* {
  font-family: 'Regular', Arial, sans-serif;
  box-sizing: border-box;
}
.login {
  background: #ffffff;
  color: var(--c-ink);
  font-family: var(--font-body);
}

.login__skip,
.section__skip {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 1000;
}

.shell__page,
.section__page {
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shell__bg,
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shell__bg > img,
.section__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shell__scrim {
  background:
    radial-gradient(55% 45% at 50% 30%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.35));
}

.login__alert,
.section__alert {
  margin: 0;
  border-radius: var(--radius-md);
}

.login__control,
.section__control {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.login__metaRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-1);
}

.login__remember {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.login__check,
.section__check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  background-color: rgba(239, 247, 248, 1);
  border: 1px solid var(--c-teal);
}

.login__check {
  margin-top: 0;
}

.section__check {
  margin-top: 0.15rem;
}

.login__check:checked,
.section__check:checked {
  background-color: var(--c-teal);
  border-color: var(--c-teal);
}

.login__check:focus,
.section__check:focus {
  box-shadow: 0 0 0 0.25rem var(--c-teal-weak);
}

.login__checkLabel {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.72);
}

.login__forgot {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--c-teal);
  text-decoration: none;
  text-decoration-color: rgba(44, 87, 92, 0.4);
  text-underline-offset: 0.25rem;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.login__forgot:hover {
  text-decoration: underline;
  text-decoration-color: rgba(44, 87, 92, 0.55);
}

.login__forgot:focus-visible {
  outline: 3px solid rgba(44, 87, 92, 0.35);
  outline-offset: 3px;
  border-radius: 0.625rem;
}

.login__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  color: var(--c-teal);
}

.login__dividerLine {
  height: 1px;
  width: clamp(3.25rem, 22vw, 5.5rem);
  background: var(--c-teal);
  opacity: 0.9;
}

.login__dividerText {
  font-size: 0.875rem;
  color: rgba(44, 87, 92, 0.9);
}

.login__social {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.login__socialBtn {
  width: clamp(43px, 12vw, 59px);
  height: 3.1875rem;
  padding: 0 var(--space-5);
  border-radius: 3px;
  border: 0.5px solid rgba(0, 0, 0, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.login__kakao {
  background: #FFE812;
  background-image: url('../icons/kakaotalk.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  border: 0;
}

.login__google {
  background: #ffffff;
  background-image: url('../icons/gg.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  border: 0;
}

.login__socialBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.55rem 1.1rem rgba(0, 0, 0, 0.26);
}

.login__socialBtn:active {
  transform: translateY(0px) scale(0.98);
}

.login__socialBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login__socialBtn:focus-visible {
  outline: 3px solid rgba(44, 87, 92, 0.35);
  outline-offset: 4px;
}

.login__submit,
.section__submit {
  width: 100%;
  height: 2.75rem;
  border-radius: var(--radius-pill);
  border: 0;
  background-color: rgba(22, 171, 255, 1);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.login__submit {
  margin-top: var(--space-4);
}

.section__submit {
  margin-top: var(--space-2);
}

.login__submit:hover,
.section__submit:hover {
  filter: saturate(1.03) brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.2);
}

.login__submit:active,
.section__submit:active {
  transform: translateY(0px);
}

.login__submit:disabled,
.section__submit:disabled {
  filter: grayscale(0.4);
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login__spinner,
.section__spinner {
  margin-left: var(--space-2);
}

.login__footer,
.section__footer {
  margin: var(--space-3) 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.78);
}

.login__footerLink,
.section__footerLink {
  font-weight: 900;
  color: var(--c-teal);
  text-decoration: none;
  text-decoration-color: rgba(44, 87, 92, 0.45);
  text-underline-offset: 0.25rem;
}

.login__footerLink:hover,
.section__footerLink:hover {
  text-decoration: underline;
}

aside.auth__art {
  max-height: 96vh;
}

.section__input {
  --input-height: 2.5rem;
}

@media (min-width: 375px) {
  .section__viewport {
    padding: var(--space-10) var(--space-5);
  }
}

@media (min-width: 768px) {
  .login {
    --input-height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .login {
    transition: none;
  }
  .section__toggle,
  .login__socialBtn,
.login__submit,
.section__submit,
  .login__forgot,
.login__footerLink,
.section__termsLink,
.section__footerLink {
    transition: none;
  }
}

.section__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 50% 30%, rgba(255, 255, 255, 0.52), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.38));
}

.section__viewport {
  position: relative;
  z-index: 2;
  flex: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.75rem, 5.5vw, 4.25rem) clamp(1.25rem, 4vw, 2.5rem);
}

.auth__layout {
  width: min(100%, 95rem);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(1.25rem, 3.8vw, 3rem);
}

.auth__left {
  width: 100%;
  display: flex;
  justify-content: center;
}

.auth__art {
  display: none;
  width: 100%;
}

.auth__artMedia {
  display: block;
  width: 100%;
  height: 100%;
}

.auth__artMedia > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: clamp(2rem, 5vw, 4.95rem);
}

.section__panel {
  width: min(100%, 23rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-10) var(--space-6) var(--space-8);
  border-radius: 2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  transition:
    padding 220ms ease,
    border-radius 220ms ease,
    background-color 220ms ease;
}

.form__panel {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  .form__panel {
    animation: login-panel-enter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes login-panel-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@supports (container-type: inline-size) {
  .section__panel {
    container-type: inline-size;
  }
}

.section__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.section__brand {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(4.5rem, 14vw, 5.25rem);
  height: clamp(4.5rem, 14vw, 5.25rem);
}

.section__brandArt {
  position: absolute;
  inset: -3rem;
  width: calc(100% + 6rem);
  height: calc(100% + 6rem);
  object-fit: cover;
  opacity: 0.18;
  filter: blur(0.5px);
  transform: rotate(-3deg);
  pointer-events: none;
}

.section__k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.25rem, 8vw, 4.75rem);
  line-height: 1;
  color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section__k > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  letter-spacing: 0.08em;
  color: #0c0c0c;
}

.section__subtitle {
  margin: 0;
  max-width: 28ch;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.72);
}

.section__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.section__alert--success {
  border-radius: var(--radius-md);
}

.section__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.section__input {
  width: 100%;
  height: var(--input-height);
  border-radius: var(--radius-sm);
  border: 0;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.22);
  padding: 0 var(--space-4);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.78);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.section__input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.section__input:focus {
  box-shadow:
    0 0 0 0.25rem rgba(22, 171, 255, 0.25),
    0 0.45rem 1.2rem rgba(0, 0, 0, 0.22);
}

.section__toggle {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  padding: 0 var(--space-3);
  height: 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  transform: translate(0, -50%)!important;
  transition:
    transform 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
  opacity: 0;
  pointer-events: none;
}

.login__control:focus-within .section__toggle,
.section__control:focus-within .section__toggle {
  opacity: 1;
  pointer-events: auto;
}

.section__toggle:hover {
  background: rgba(255, 255, 255, 0.92);
}

.section__toggle:active {
  transform: scale(0.98);
}

.section__terms {
  margin: var(--space-1) 0 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.section__terms.section__terms--inline {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.section__terms.section__terms--inline > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 576px) {
  .section__terms.section__terms--inline .login__forgot {
  }
}

.section__checkLabel {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.78);
}

.section__termsLink {
  font-weight: 900;
  color: var(--c-teal);
  text-decoration: none;
  text-decoration-color: rgba(44, 87, 92, 0.45);
  text-underline-offset: 0.25rem;
}

.section__termsLink:hover {
  text-decoration: underline;
}

.section__termsLink:focus-visible {
  outline: 3px solid rgba(44, 87, 92, 0.35);
  outline-offset: 3px;
  border-radius: 0.625rem;
}

@media (max-width: 430px) {
  .section__panel {
    padding: var(--space-10) var(--space-5) var(--space-8);
  }
}

@media (min-width: 431px) and (max-width: 834px) {
  .section__panel {
    width: min(100%, 37.125rem);
    padding: clamp(2.75rem, 5.6vw, 3.5rem) clamp(1.75rem, 4.6vw, 3rem) clamp(2.25rem, 4.4vw, 3rem);
    border-radius: clamp(2rem, 10vw, 6.0625rem);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .section__subtitle {
    font-size: 0.9375rem;
  }
  .section__input {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 835px) {
  .auth__layout {
    grid-template-columns: minmax(22.875rem, 0.85fr) minmax(28rem, 1.15fr);
    align-items: center;
    justify-items: stretch;
  }
  .auth__left {
    justify-content: flex-start;
  }
  .auth__art {
    display: block;
    max-width: 45.5625rem;
    justify-self: end;
    aspect-ratio: 729 / 928;
    filter: drop-shadow(0 1.6rem 2.8rem rgba(0, 0, 0, 0.18));
    transition:
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      filter 260ms ease;
  }
  .auth__artMedia > img {
    border-radius: 4.9375rem;
  }
  .section__panel {
    width: min(100%, 26.5rem);
    border-radius: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.6);
  }
  .section__viewport {
    background: white;
  }

  .section__panel {
    box-shadow: unset;
  }
  .section__terms {
    border: 0;
  }
}

@media (min-width: 992px) {
  .section__input {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1440px) {
  .section__viewport {
    padding: 4.25rem 2rem;
    padding-left: 10rem;
  }
}

@supports (container-type: inline-size) {
  @container (min-width: 30rem) {
    .section__k {
      font-size: clamp(4rem, 7cqw, 5.5rem);
    }
    .section__title {
      font-size: 1.5625rem;
    }
  }
}

/* ===========================
   Home Header / Topbar
   =========================== */

.homeLanding {
  --hl-masthead-h: 88px;
  --hl-masthead-bg: rgba(74, 96, 116, 1);
  --hl-masthead-2-bg: rgba(33, 31, 31, 0);
  --hl-masthead-bg-scrolled: #ffffff;
  --hl-masthead-border: rgba(255, 255, 255, 0.12);
  --hl-masthead-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  --hl-main-color: #16ABFF;
  --hl-text: #ffffff;
  font-family: 'Inter', sans-serif;
}

.homeLanding .homeLanding__masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: calc(var(--hl-masthead-h) + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(180deg, var(--hl-masthead-bg), var(--hl-masthead-2-bg));
  box-shadow: none;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.topbar__light.homeLanding .homeLanding__masthead {
  background: #ffffff;
}

.topbar__light.homeLanding .homeLanding__mastheadInner {
  max-width: 1402px;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  border-radius: 12px;
  opacity: 1;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.topbar__light.homeLanding .homeLanding__primaryLink {
  color: rgba(0, 0, 0, 1);
  font-weight: 300;
}
.topbar__light.homeLanding .homeLanding__masthead--scrolled {
  box-shadow: none !important;
}
.topbar__light.homeLanding .homeLanding__masthead .homeLanding__pillBtn {
  background: rgba(22, 171, 255, 1);
  color: #ffffff;
}
.topbar__light.homeLanding .homeLanding__masthead .homeLanding__bellIcon {
  background: rgba(22, 171, 255, 1);
}
.topbar__light .homeLanding__caret {
  border-top: 5px solid white !important;
  color: white;
}

.homeLanding .homeLanding__masthead--scrolled {
  background: var(--hl-masthead-bg-scrolled);
  border-color: var(--hl-masthead-border);
  box-shadow: var(--hl-masthead-shadow);
}

.homeLanding .homeLanding__mastheadInner {
  width: min(100%, calc(100% - 5.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.homeLanding .homeLanding__mastheadLeft {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-width: 0;
}

.homeLanding .homeLanding__mastheadRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.homeLanding .homeLanding__logoLink {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.homeLanding .homeLanding__logoImg {
  width: 60px;
  height: 60px;
  display: block;
  flex: none;
}

.homeLanding .homeLanding__logoText {
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  line-height: 1.1;
  white-space: nowrap;
}

.homeLanding .homeLanding__primaryNav {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
}

.homeLanding .homeLanding__primaryLink {
  text-decoration: none;
  color: var(--hl-text);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 22px;
  padding: 0.5rem 0.85rem;
  transition: background 160ms ease, transform 160ms ease;
  font-family: Inter;
  font-style: Light;
}


.homeLanding .homeLanding__primaryLink--scrolled {
  color: #0c0c0c;
}
.homeLanding .homeLanding__primaryLink--active {
  color: var(--hl-main-color);
  font-weight: 600;
  border-bottom: 2px solid var(--hl-main-color);
}

.homeLanding .homeLanding__primaryLink:hover {
  transform: translateY(-1px);
}

.homeLanding .homeLanding__primaryLink:active {
  transform: translateY(0px);
  font-weight: 600;
  font-style: Semi Bold;
}

.homeLanding .homeLanding__masthead .homeLanding__navBtn {
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.homeLanding .homeLanding__masthead .homeLanding__navBtn--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(17, 17, 17, 0.86);
}

.homeLanding .homeLanding__masthead .homeLanding__navBtn--solid {
  background: rgba(255, 255, 255, 0.98);
  color: rgba(17, 17, 17, 0.88);
}

.homeLanding .homeLanding__masthead .homeLanding__authBar {
  gap: 2rem;
}

.homeLanding .homeLanding__masthead .homeLanding__pillBtn {
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.homeLanding .homeLanding__masthead--scrolled .homeLanding__pillBtn {
  background: var(--hl-main-color);
}

.homeLanding .homeLanding__masthead .homeLanding__bellIcon {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.homeLanding .homeLanding__masthead--scrolled .homeLanding__bellIcon {
  background: var(--hl-main-color);
}

.homeLanding .homeLanding__heroInner {
  padding-top: calc(var(--hl-masthead-h) + env(safe-area-inset-top) + 2.25rem);
}

.homeLanding #home-main {
  scroll-margin-top: calc(var(--hl-masthead-h) + env(safe-area-inset-top) + 1rem);
}

.homeLanding .homeLanding__heroText {
  padding-top: clamp(4.25rem, 8vh, 6.25rem);
}

.homeLanding .homeLanding__hamburger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}

.homeLanding .homeLanding__hamburger--light {
  background: var(--hl-main-color);
}

.homeLanding .homeLanding__hamburger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.homeLanding .homeLanding__hamburger:active {
  transform: translateY(0px) scale(0.98);
}

.homeLanding .homeLanding__hamburgerIcon {
  position: relative;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: block;
}

.homeLanding .homeLanding__hamburgerIcon::before,
.homeLanding .homeLanding__hamburgerIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.homeLanding .homeLanding__masthead--scrolled .homeLanding__hamburger .homeLanding__hamburgerIcon::before,
.homeLanding .homeLanding__masthead--scrolled .homeLanding__hamburger .homeLanding__hamburgerIcon::after,
.homeLanding .homeLanding__masthead--scrolled .homeLanding__hamburger .homeLanding__hamburgerIcon {
  background: #000000;
}

.homeLanding .homeLanding__hamburgerIcon::before {
  top: -6px;
}

.homeLanding .homeLanding__hamburgerIcon::after {
  top: 6px;
}

/* ===========================
   Mobile Drawer
   =========================== */

.homeLanding .homeLanding__drawerOverlay {
  position: fixed;
  inset: 0;
  z-index: 69;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.homeLanding .homeLanding__drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(22rem, 86vw);
  z-index: 70;
  background: rgba(12, 14, 18, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(102%);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: calc(env(safe-area-inset-top) + 1rem) 1rem 1rem;
}

.homeLanding .homeLanding__drawer--open {
  transform: translateX(0%);
}

.homeLanding .homeLanding__drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.homeLanding .homeLanding__drawerBrand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homeLanding .homeLanding__drawerBrand img {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.homeLanding .homeLanding__drawerClose {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.homeLanding .homeLanding__drawerClose:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.homeLanding .homeLanding__drawerNav {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.homeLanding .homeLanding__drawerLink {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  padding: 0.85rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 160ms ease, transform 160ms ease;
}

.homeLanding .homeLanding__drawerLink:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.homeLanding .homeLanding__drawerFooter {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.homeLanding .homeLanding__drawerAuth {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.homeLanding .homeLanding__drawerUser {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.homeLanding .homeLanding__drawerIdentity {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
  padding: 0.5rem 0.1rem 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.homeLanding .homeLanding__drawerBtn {
  height: 44px;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.homeLanding .homeLanding__drawerBtn:hover {
  transform: translateY(-1px);
}

.homeLanding .homeLanding__drawerBtn--primary {
  background: rgba(255, 255, 255, 0.96);
  color: rgba(17, 17, 17, 0.9);
}

.homeLanding .homeLanding__drawerBtn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.homeLanding .homeLanding__drawerBtn--danger {
  background: rgba(229, 57, 53, 0.16);
  border-color: rgba(229, 57, 53, 0.42);
  color: rgba(255, 255, 255, 0.92);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 920px) {
  .homeLanding .homeLanding__primaryNav,
  .homeLanding .homeLanding__masthead .homeLanding__nav,
  .homeLanding .homeLanding__masthead .homeLanding__authBar {
    display: none;
  }

  .homeLanding .homeLanding__hamburger {
    display: inline-flex;
  }

  .homeLanding .homeLanding__mastheadInner {
    width: min(1240px, calc(100% - 1.75rem));
  }

  .homeLanding .homeLanding__heroInner {
    padding-top: calc(var(--hl-masthead-h) + env(safe-area-inset-top) + 1.5rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .homeLanding .homeLanding__logoText {
    font-size: 0.88rem;
  }
}

@media (min-width: 921px) {
  .homeLanding .homeLanding__drawer,
  .homeLanding .homeLanding__drawerOverlay {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homeLanding .homeLanding__masthead,
  .homeLanding .homeLanding__primaryLink,
  .homeLanding .homeLanding__hamburger,
  .homeLanding .homeLanding__drawer,
  .homeLanding .homeLanding__drawerLink,
  .homeLanding .homeLanding__drawerBtn {
    transition: none !important;
  }
}
