/* [project]/components/contactSuccessAnimation.module.css [app-client] (css) */
.contactSuccessAnimation-module__BIraqq__overlay {
  z-index: 1000;
  color: #f1eee8;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: radial-gradient(circle at 50% 48%, #d76a3b14, #0000 27%), #070707d1;
  place-items: center;
  transition: opacity .26s, visibility .26s step-end;
  display: grid;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transition: opacity .26s, visibility step-start;
}

.contactSuccessAnimation-module__BIraqq__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contactSuccessAnimation-module__BIraqq__paper {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0;
  background: linear-gradient(148deg, #0000 48.8%, #18130f3d 49.5%, #0000 50.4%), #eee7dd;
  width: 132px;
  height: 86px;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate3d(-50%, calc(18px - 50%), 0)scale(.72);
  box-shadow: 0 18px 50px #00000047;
}

.contactSuccessAnimation-module__BIraqq__paper:before {
  content: "";
  background: linear-gradient(32deg, #0000 49%, #d76a3b6b 49.5% 50.5%, #0000 51%), linear-gradient(148deg, #0000 49%, #14100d2e 49.5% 50.5%, #0000 51%);
  position: absolute;
  inset: 0;
}

.contactSuccessAnimation-module__BIraqq__paper:after {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  content: "";
  opacity: 0;
  background: #d76a3b33;
  width: 58%;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.contactSuccessAnimation-module__BIraqq__paper > span {
  z-index: 2;
  transform-origin: 0;
  background: #221b1661;
  width: 54%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 22%;
  transform: rotate(-20deg);
}

.contactSuccessAnimation-module__BIraqq__trail {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.contactSuccessAnimation-module__BIraqq__trail path {
  fill: none;
  stroke: #d76a3b8a;
  stroke-width: .16px;
  stroke-dasharray: 1;
  stroke-dashoffset: 1px;
  vector-effect: non-scaling-stroke;
}

.contactSuccessAnimation-module__BIraqq__origin {
  opacity: 0;
  border: 1px solid #d76a3b99;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.contactSuccessAnimation-module__BIraqq__copy {
  z-index: 2;
  text-align: center;
  opacity: 0;
  margin-top: 238px;
  position: relative;
  transform: translateY(12px);
}

.contactSuccessAnimation-module__BIraqq__copy > span {
  color: #d76a3b;
  letter-spacing: .18em;
  font-size: 8px;
  font-weight: 600;
}

.contactSuccessAnimation-module__BIraqq__copy p {
  color: #f1eee8;
  letter-spacing: -.035em;
  margin: 14px 0 0;
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 520;
}

.contactSuccessAnimation-module__BIraqq__copy small {
  color: #f1eee880;
  margin-top: 10px;
  font-size: 11px;
  display: block;
}

.contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper {
  animation: 2.45s cubic-bezier(.65, 0, .25, 1) .12s both contactSuccessAnimation-module__BIraqq__foldAndFly;
}

.contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper:after {
  animation: 2.45s .12s both contactSuccessAnimation-module__BIraqq__foldAccent;
}

.contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__trail path {
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) 1.12s both contactSuccessAnimation-module__BIraqq__drawTrail;
}

.contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__origin {
  animation: 1.2s ease-out .42s both contactSuccessAnimation-module__BIraqq__originPulse;
}

.contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__copy {
  animation: 2.45s .34s both contactSuccessAnimation-module__BIraqq__copyReveal;
}

@keyframes contactSuccessAnimation-module__BIraqq__foldAndFly {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
    transform: translate3d(-50%, calc(18px - 50%), 0)scale(.72)rotate(0);
  }

  10% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0)scale(1)rotate(0);
  }

  30% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate3d(-50%, -50%, 0)scale(.92)rotateX(14deg);
  }

  48% {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    transform: translate3d(-50%, -50%, 0)scale(.82)rotate(-8deg);
  }

  60% {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    opacity: 1;
    transform: translate3d(-50%, -50%, 0)scale(.86)rotate(-8deg);
  }

  100% {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    opacity: 0;
    transform: translate3d(calc(40vw - 50%), calc(-50% - 34vh), 0)scale(.38)rotate(-13deg);
  }
}

@keyframes contactSuccessAnimation-module__BIraqq__foldAccent {
  0%, 30% {
    opacity: 0;
    transform-origin: 100% 100%;
    transform: rotateX(90deg);
  }

  48%, 84% {
    opacity: 1;
    transform: rotateX(0);
  }

  100% {
    opacity: 0;
  }
}

@keyframes contactSuccessAnimation-module__BIraqq__drawTrail {
  0% {
    stroke-dashoffset: 1px;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes contactSuccessAnimation-module__BIraqq__originPulse {
  0% {
    opacity: 0;
    scale: .6;
  }

  30% {
    opacity: 1;
    scale: 1;
  }

  100% {
    opacity: 0;
    scale: 4.5;
  }
}

@keyframes contactSuccessAnimation-module__BIraqq__copyReveal {
  0%, 8% {
    opacity: 0;
    transform: translateY(12px);
  }

  22%, 82% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

@media (max-width: 767px) {
  .contactSuccessAnimation-module__BIraqq__paper {
    width: 108px;
    height: 70px;
  }

  .contactSuccessAnimation-module__BIraqq__copy {
    width: calc(100% - 40px);
    margin-top: 204px;
  }

  .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper {
    animation-name: contactSuccessAnimation-module__BIraqq__foldAndFlyMobile;
  }
}

@keyframes contactSuccessAnimation-module__BIraqq__foldAndFlyMobile {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
    transform: translate3d(-50%, calc(18px - 50%), 0)scale(.72);
  }

  10% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0)scale(1);
  }

  30% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate3d(-50%, -50%, 0)scale(.92)rotateX(14deg);
  }

  48% {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    transform: translate3d(-50%, -50%, 0)scale(.82)rotate(-8deg);
  }

  60% {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    opacity: 1;
    transform: translate3d(-50%, -50%, 0)scale(.86)rotate(-8deg);
  }

  100% {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    opacity: 0;
    transform: translate3d(calc(42vw - 50%), calc(-50% - 30vh), 0)scale(.36)rotate(-13deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper, .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper:after, .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__trail path, .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__origin, .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__copy {
    animation: none;
  }

  .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    opacity: 1;
    transform: translate3d(-50%, -50%, 0)scale(.82)rotate(-8deg);
  }

  .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__paper:after, .contactSuccessAnimation-module__BIraqq__overlay[data-open="true"] .contactSuccessAnimation-module__BIraqq__copy {
    opacity: 1;
    transform: none;
  }
}

/* [project]/components/DeleteAccountForm.module.css [app-client] (css) */
.DeleteAccountForm-module__pio7xq__form {
  gap: 30px;
  display: grid;
}

.DeleteAccountForm-module__pio7xq__field {
  gap: 11px;
  display: grid;
}

.DeleteAccountForm-module__pio7xq__label {
  color: #f1eee8cc;
  letter-spacing: .02em;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.DeleteAccountForm-module__pio7xq__label i {
  color: #f1eee859;
  letter-spacing: .13em;
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
}

.DeleteAccountForm-module__pio7xq__input {
  color: #f1eee8;
  width: 100%;
  min-height: 62px;
  font: inherit;
  background: #ffffff05;
  border: 1px solid #f1eee829;
  border-radius: 0;
  outline: none;
  padding: 0 18px;
  font-size: 14px;
  transition: border-color .22s, background .22s;
}

.DeleteAccountForm-module__pio7xq__input::placeholder {
  color: #f1eee852;
}

.DeleteAccountForm-module__pio7xq__input:hover {
  border-color: #f1eee84d;
}

.DeleteAccountForm-module__pio7xq__input:focus {
  background: #d76a3b0e;
  border-color: #d76a3b;
}

.DeleteAccountForm-module__pio7xq__inputInvalid {
  border-color: #ef6f5bc7;
}

.DeleteAccountForm-module__pio7xq__fieldError {
  color: #ef8b78;
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
}

.DeleteAccountForm-module__pio7xq__agreementMotion {
  margin-top: 4px;
}

.DeleteAccountForm-module__pio7xq__agreement {
  background: #ffffff05;
  border: 1px solid #f1eee829;
  padding: 18px;
  transition: border-color .22s, background .22s;
}

.DeleteAccountForm-module__pio7xq__agreementInvalid {
  background: #ef6f5b0b;
  border-color: #ef6f5bc7;
}

.DeleteAccountForm-module__pio7xq__agreementLabel {
  cursor: pointer;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.DeleteAccountForm-module__pio7xq__checkbox {
  accent-color: #d76a3b;
  cursor: pointer;
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.DeleteAccountForm-module__pio7xq__agreementLabel > span {
  color: #f1eee894;
  font-size: 12px;
  line-height: 1.72;
}

.DeleteAccountForm-module__pio7xq__agreementLabel strong {
  color: #f1eee8de;
  font-weight: 600;
}

.DeleteAccountForm-module__pio7xq__agreementLabel a {
  color: #efa47f;
  text-underline-offset: 3px;
  -webkit-text-decoration: underline #efa47f5c;
  text-decoration: underline #efa47f5c;
}

.DeleteAccountForm-module__pio7xq__submit {
  color: #0d0d0d;
  cursor: pointer;
  width: 100%;
  min-height: 62px;
  font: inherit;
  letter-spacing: .04em;
  background: #d76a3b;
  border: 1px solid #d76a3b;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  transition: background .22s, border-color .22s, color .22s;
  display: flex;
}

.DeleteAccountForm-module__pio7xq__submit i {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.DeleteAccountForm-module__pio7xq__submit:hover:not(:disabled) {
  background: #f1eee8;
  border-color: #f1eee8;
}

.DeleteAccountForm-module__pio7xq__submit:disabled {
  cursor: wait;
  opacity: .62;
}

.DeleteAccountForm-module__pio7xq__submit:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #f1eee8;
}

.DeleteAccountForm-module__pio7xq__status {
  border: 1px solid #f1eee826;
  margin: -10px 0 0;
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.5;
}

.DeleteAccountForm-module__pio7xq__statusSending {
  color: #efa47f;
  background: #d76a3b0f;
}

.DeleteAccountForm-module__pio7xq__statusError {
  color: #ef8b78;
  background: #ef6f5b0b;
}

@media (min-width: 901px) {
  .DeleteAccountForm-module__pio7xq__form {
    gap: 22px;
  }

  .DeleteAccountForm-module__pio7xq__field {
    gap: 8px;
  }

  .DeleteAccountForm-module__pio7xq__input {
    min-height: 54px;
  }

  .DeleteAccountForm-module__pio7xq__agreement {
    padding: 15px;
  }

  .DeleteAccountForm-module__pio7xq__submit {
    min-height: 54px;
  }
}

@media (max-width: 767px) {
  .DeleteAccountForm-module__pio7xq__form {
    gap: 24px;
  }

  .DeleteAccountForm-module__pio7xq__input {
    min-height: 58px;
    padding: 0 14px;
    font-size: 13px;
  }

  .DeleteAccountForm-module__pio7xq__agreement {
    padding: 15px;
  }

  .DeleteAccountForm-module__pio7xq__agreementLabel > span {
    font-size: 11px;
  }

  .DeleteAccountForm-module__pio7xq__submit {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .DeleteAccountForm-module__pio7xq__input, .DeleteAccountForm-module__pio7xq__agreement, .DeleteAccountForm-module__pio7xq__submit {
    transition: none;
  }
}

/* [project]/components/brand-subpage/brandSubpageHeader.module.css [app-client] (css) */
.brandSubpageHeader-module__PToI_a__header {
  z-index: 70;
  color: #f1eee8;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: #090909ad;
  border-bottom: 1px solid #ffffff0b;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 clamp(28px, 3.3vw, 52px);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.brandSubpageHeader-module__PToI_a__wordmark {
  align-items: center;
  width: clamp(86px, 6.2vw, 96px);
  text-decoration: none;
  transition: opacity .26s, transform .33s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
}

.brandSubpageHeader-module__PToI_a__wordmark img {
  width: 100%;
  height: auto;
  display: block;
}

.brandSubpageHeader-module__PToI_a__wordmark:hover {
  opacity: .86;
  transform: translateY(-1px);
}

.brandSubpageHeader-module__PToI_a__headerActions {
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  display: flex;
}

.brandSubpageHeader-module__PToI_a__headerContact {
  color: #f1eee8b8;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.brandSubpageHeader-module__PToI_a__headerContact span {
  margin-left: 8px;
  transition: transform .26s;
  display: inline-block;
}

.brandSubpageHeader-module__PToI_a__headerContact:hover span {
  transform: translate(3px, -3px);
}

.brandSubpageHeader-module__PToI_a__header button {
  color: #f1eee8;
  cursor: pointer;
  min-width: 82px;
  min-height: 44px;
  font: inherit;
  letter-spacing: .16em;
  background: none;
  border: 0;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.brandSubpageHeader-module__PToI_a__menuGlyph, .brandSubpageHeader-module__PToI_a__menuGlyphOpen {
  width: 23px;
  height: 12px;
  display: block;
  position: relative;
}

.brandSubpageHeader-module__PToI_a__menuGlyph b, .brandSubpageHeader-module__PToI_a__menuGlyphOpen b {
  background: currentColor;
  width: 23px;
  height: 1px;
  transition: top .3s, rotate .3s;
  display: block;
  position: absolute;
  left: 0;
}

.brandSubpageHeader-module__PToI_a__menuGlyph b:first-child {
  top: 2px;
}

.brandSubpageHeader-module__PToI_a__menuGlyph b:last-child {
  top: 9px;
}

.brandSubpageHeader-module__PToI_a__menuGlyphOpen b:first-child {
  top: 6px;
  rotate: 45deg;
}

.brandSubpageHeader-module__PToI_a__menuGlyphOpen b:last-child {
  top: 6px;
  rotate: -45deg;
}

.brandSubpageHeader-module__PToI_a__menuPanel {
  z-index: 60;
  color: #f1eee8;
  background: radial-gradient(circle at 82% 34%, #d76a3b0f, #0000 30%), #0c0c0c;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 28vw);
  gap: 8vw;
  padding: 100px clamp(28px, 6vw, 110px) 34px;
  display: grid;
  position: fixed;
  inset: 0;
  overflow: hidden auto;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav a {
  color: #f1eee8;
  border-bottom: 1px solid #f1eee81f;
  grid-template-columns: 54px minmax(0, 1fr) 32px;
  align-items: center;
  min-height: clamp(92px, 14vh, 138px);
  padding: 12px 0 10px;
  text-decoration: none;
  display: grid;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav small {
  color: #f1eee861;
  letter-spacing: .14em;
  font-size: 9px;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav span {
  letter-spacing: -.06em;
  font-size: clamp(46px, 5.8vw, 90px);
  font-weight: 520;
  line-height: .96;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav i {
  color: #f1eee861;
  font-style: normal;
  transition: color .25s, transform .25s;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav a:hover i {
  color: #d76a3b;
  transform: translate(5px, 5px);
}

.brandSubpageHeader-module__PToI_a__menuPanel nav a[data-active="true"] span {
  color: #f0b08d;
}

.brandSubpageHeader-module__PToI_a__menuPanel nav a[data-active="true"] small, .brandSubpageHeader-module__PToI_a__menuPanel nav a[data-active="true"] i {
  color: #d76a3b;
}

.brandSubpageHeader-module__PToI_a__menuMeta {
  border-left: 1px solid #f1eee81f;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 30px;
  display: flex;
}

.brandSubpageHeader-module__PToI_a__menuMeta p {
  color: #f1eee894;
  letter-spacing: .12em;
  font-size: 10px;
  line-height: 1.7;
}

.brandSubpageHeader-module__PToI_a__menuMeta > span {
  color: #d76a3b;
  letter-spacing: .14em;
  margin-top: 30px;
  font-size: 9px;
}

@media (max-width: 767px) {
  .brandSubpageHeader-module__PToI_a__header {
    height: 70px;
    padding: 0 20px;
  }

  .brandSubpageHeader-module__PToI_a__wordmark {
    width: 82px;
  }

  .brandSubpageHeader-module__PToI_a__headerContact {
    display: none;
  }

  .brandSubpageHeader-module__PToI_a__headerActions {
    gap: 14px;
  }

  .brandSubpageHeader-module__PToI_a__menuPanel {
    flex-direction: column;
    padding: 86px 22px 24px;
    display: flex;
  }

  .brandSubpageHeader-module__PToI_a__menuPanel nav {
    flex: 1;
  }

  .brandSubpageHeader-module__PToI_a__menuPanel nav a {
    -moz-column-gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    column-gap: 12px;
    min-height: 78px;
  }

  .brandSubpageHeader-module__PToI_a__menuPanel nav span {
    letter-spacing: -.045em;
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: .96;
  }

  .brandSubpageHeader-module__PToI_a__menuPanel nav i {
    justify-self: end;
    font-size: 18px;
  }

  .brandSubpageHeader-module__PToI_a__menuMeta {
    border-top: 1px solid #f1eee81f;
    border-left: 0;
    padding: 22px 0 0;
  }
}

/* [project]/app/(site)/deleteaccount/deleteAccount.module.css [app-client] (css) */
.deleteAccount-module__cEYL8a__page {
  --bg: #090909;
  --surface: #0d0d0d;
  --surface-warm: #17130f;
  --ink: #f1eee8;
  --muted: #f1eee89e;
  --subtle: #f1eee866;
  --line: #f1eee821;
  --warm: #d76a3b;
  background: var(--bg);
  min-height: 100vh;
  color: var(--ink);
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  font-family: Inter, Noto Sans KR, Apple SD Gothic Neo, Malgun Gothic, system-ui, sans-serif;
  overflow: clip;
}

.deleteAccount-module__cEYL8a__page, .deleteAccount-module__cEYL8a__page * {
  box-sizing: border-box;
}

.deleteAccount-module__cEYL8a__page a {
  -webkit-tap-highlight-color: transparent;
}

.deleteAccount-module__cEYL8a__page a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.deleteAccount-module__cEYL8a__hero, .deleteAccount-module__cEYL8a__document, .deleteAccount-module__cEYL8a__closing, .deleteAccount-module__cEYL8a__footer {
  width: 100%;
  padding-left: clamp(28px, 5.6vw, 108px);
  padding-right: clamp(28px, 5.6vw, 108px);
}

.deleteAccount-module__cEYL8a__label {
  align-items: center;
  gap: 18px;
  display: flex;
}

.deleteAccount-module__cEYL8a__label span, .deleteAccount-module__cEYL8a__label p {
  letter-spacing: .15em;
  font-size: 9px;
}

.deleteAccount-module__cEYL8a__label span {
  color: var(--warm);
}

.deleteAccount-module__cEYL8a__label p {
  color: #f1eee8b3;
  margin: 0;
  font-weight: 600;
}

.deleteAccount-module__cEYL8a__hero {
  background: radial-gradient(circle at 72% 38%, #d76a3b1a, #0000 30%), linear-gradient(125deg, #090909 24%, #110e0c 100%);
  grid-template-rows: auto 1fr auto;
  min-height: 66svh;
  padding-top: clamp(98px, 12vh, 118px);
  padding-bottom: 30px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.deleteAccount-module__cEYL8a__heroLines {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.deleteAccount-module__cEYL8a__heroLines span {
  background: linear-gradient(90deg, #0000, #f1eee81f, #f1eee806, #0000);
  width: 116vw;
  height: 1px;
  position: absolute;
  left: -8vw;
}

.deleteAccount-module__cEYL8a__heroLines span:first-child {
  top: 27%;
  rotate: -3deg;
}

.deleteAccount-module__cEYL8a__heroLines span:nth-child(2) {
  top: 60%;
  rotate: 4deg;
}

.deleteAccount-module__cEYL8a__heroLines span:nth-child(3) {
  top: 86%;
  rotate: -2deg;
}

.deleteAccount-module__cEYL8a__heroTop, .deleteAccount-module__cEYL8a__heroBottom {
  z-index: 2;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.deleteAccount-module__cEYL8a__heroTop > p, .deleteAccount-module__cEYL8a__heroBottom > span {
  color: var(--subtle);
  letter-spacing: .15em;
  margin: 0;
  font-size: 8px;
}

.deleteAccount-module__cEYL8a__hero h1 {
  z-index: 2;
  letter-spacing: -.075em;
  align-self: center;
  margin: clamp(42px, 6vh, 70px) 0;
  font-size: clamp(72px, 10vw, 164px);
  font-weight: 520;
  line-height: .84;
  position: relative;
}

.deleteAccount-module__cEYL8a__hero h1 i {
  color: #f1eee845;
  font-style: normal;
  font-weight: 430;
}

.deleteAccount-module__cEYL8a__heroBottom p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.72;
}

.deleteAccount-module__cEYL8a__document {
  background: radial-gradient(circle at 11% 24%, #d76a3b0b, transparent 25%), var(--surface);
  grid-template-columns: minmax(240px, .3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 6.5vw, 112px);
  padding-top: clamp(64px, 8vh, 90px);
  padding-bottom: clamp(80px, 11vh, 120px);
  display: grid;
}

.deleteAccount-module__cEYL8a__index {
  min-width: 0;
  position: sticky;
  top: 110px;
}

.deleteAccount-module__cEYL8a__index nav {
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.deleteAccount-module__cEYL8a__index nav a {
  border-bottom: 1px solid var(--line);
  min-height: 45px;
  color: var(--muted);
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  text-decoration: none;
  transition: color .22s, padding .22s, background .22s;
  display: grid;
}

.deleteAccount-module__cEYL8a__index nav a > span {
  color: var(--subtle);
  letter-spacing: .12em;
  font-size: 8px;
}

.deleteAccount-module__cEYL8a__index nav a strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  overflow: hidden;
}

.deleteAccount-module__cEYL8a__index nav a i {
  color: var(--subtle);
  font-size: 10px;
  font-style: normal;
}

.deleteAccount-module__cEYL8a__index nav a:hover {
  color: #f0b08d;
  background: #d76a3b12;
  padding: 0 8px;
}

.deleteAccount-module__cEYL8a__index nav a:hover > span, .deleteAccount-module__cEYL8a__index nav a:hover i {
  color: var(--warm);
}

.deleteAccount-module__cEYL8a__indexMeta {
  gap: 8px;
  margin-top: 24px;
  display: grid;
}

.deleteAccount-module__cEYL8a__indexMeta span {
  color: var(--subtle);
  letter-spacing: .14em;
  font-size: 8px;
}

.deleteAccount-module__cEYL8a__indexMeta strong {
  color: #f1eee8c7;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 500;
}

.deleteAccount-module__cEYL8a__content {
  min-width: 0;
}

.deleteAccount-module__cEYL8a__intro {
  padding-bottom: clamp(58px, 8vh, 88px);
}

.deleteAccount-module__cEYL8a__intro > span, .deleteAccount-module__cEYL8a__requestHeading > div > span {
  color: var(--warm);
  letter-spacing: .16em;
  font-size: 8px;
  font-weight: 650;
}

.deleteAccount-module__cEYL8a__intro h2 {
  letter-spacing: -.065em;
  margin: 22px 0 28px;
  font-size: clamp(48px, 6.6vw, 108px);
  font-weight: 520;
  line-height: .9;
}

.deleteAccount-module__cEYL8a__intro h2 i {
  color: #f1eee84d;
  font-style: normal;
  font-weight: 430;
}

.deleteAccount-module__cEYL8a__intro > p {
  max-width: 760px;
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.deleteAccount-module__cEYL8a__summary {
  border-top: 1px solid #f1eee842;
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  display: grid;
}

.deleteAccount-module__cEYL8a__summary > div {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff03;
  min-height: 142px;
  padding: 16px;
}

.deleteAccount-module__cEYL8a__summary > div:nth-child(2) {
  background: linear-gradient(145deg, #d76a3b1a, #ffffff03);
}

.deleteAccount-module__cEYL8a__summary span {
  color: var(--warm);
  letter-spacing: .14em;
  font-size: 8px;
}

.deleteAccount-module__cEYL8a__summary strong {
  letter-spacing: -.05em;
  margin-top: 22px;
  font-size: 34px;
  font-weight: 500;
  display: block;
}

.deleteAccount-module__cEYL8a__summary p {
  color: var(--subtle);
  margin: 6px 0 0;
  font-size: 10px;
}

.deleteAccount-module__cEYL8a__article {
  border-top: 1px solid #f1eee845;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: clamp(42px, 6vh, 64px) 0 clamp(54px, 7vh, 76px);
  scroll-margin-top: 100px;
  display: grid;
}

.deleteAccount-module__cEYL8a__article > div {
  min-width: 0;
}

.deleteAccount-module__cEYL8a__articleNumber {
  color: var(--warm);
  letter-spacing: .14em;
  padding-top: 5px;
  font-size: 9px;
}

.deleteAccount-module__cEYL8a__article h3 {
  letter-spacing: -.045em;
  max-width: 850px;
  margin: 0 0 30px;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.deleteAccount-module__cEYL8a__warning {
  background: linear-gradient(145deg, #d76a3b1f, #ffffff03);
  border: 1px solid #d76a3b6b;
  padding: clamp(22px, 3.2vw, 34px);
}

.deleteAccount-module__cEYL8a__warning > span {
  color: #efa47f;
  letter-spacing: .15em;
  font-size: 8px;
  font-weight: 650;
}

.deleteAccount-module__cEYL8a__warning strong {
  letter-spacing: -.03em;
  max-width: 740px;
  margin: 18px 0 13px;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  display: block;
}

.deleteAccount-module__cEYL8a__warning p {
  max-width: 760px;
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.deleteAccount-module__cEYL8a__dataGrid {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}

.deleteAccount-module__cEYL8a__dataGrid section {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 190px;
  padding: 22px;
}

.deleteAccount-module__cEYL8a__dataGrid section:last-child {
  border-right: 0;
}

.deleteAccount-module__cEYL8a__dataGrid span {
  color: var(--subtle);
  letter-spacing: .13em;
  font-size: 8px;
}

.deleteAccount-module__cEYL8a__dataGrid h4 {
  color: #f1eee8e6;
  margin: 28px 0 12px;
  font-size: 16px;
  font-weight: 500;
}

.deleteAccount-module__cEYL8a__dataGrid p, .deleteAccount-module__cEYL8a__note {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.72;
}

.deleteAccount-module__cEYL8a__note {
  margin-top: 20px;
}

.deleteAccount-module__cEYL8a__note a {
  color: #efa47f;
  text-underline-offset: 3px;
}

.deleteAccount-module__cEYL8a__steps {
  border-top: 1px solid var(--line);
}

.deleteAccount-module__cEYL8a__steps section {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0 27px;
  display: grid;
}

.deleteAccount-module__cEYL8a__steps section > span {
  color: var(--warm);
  letter-spacing: .12em;
  padding-top: 4px;
  font-size: 9px;
}

.deleteAccount-module__cEYL8a__steps h4 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 500;
}

.deleteAccount-module__cEYL8a__steps p {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
}

.deleteAccount-module__cEYL8a__requestArticle {
  padding-bottom: 0;
}

.deleteAccount-module__cEYL8a__requestHeading {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .55fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 34px;
  display: grid;
}

.deleteAccount-module__cEYL8a__requestHeading h3 {
  margin: 16px 0 0;
}

.deleteAccount-module__cEYL8a__requestHeading > p {
  color: var(--muted);
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.72;
}

.deleteAccount-module__cEYL8a__formShell {
  background: radial-gradient(circle at 90% 0, #d76a3b17, #0000 30%), #ffffff04;
  border: 1px solid #f1eee833;
  padding: clamp(24px, 4.2vw, 50px);
}

.deleteAccount-module__cEYL8a__supportLine {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 19px 22px;
  display: grid;
}

.deleteAccount-module__cEYL8a__supportLine > span {
  color: var(--subtle);
  letter-spacing: .13em;
  font-size: 8px;
}

.deleteAccount-module__cEYL8a__supportLine p {
  color: var(--muted);
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}

.deleteAccount-module__cEYL8a__supportLine a {
  color: #efa47f;
  text-underline-offset: 3px;
}

.deleteAccount-module__cEYL8a__closing {
  background: radial-gradient(circle at 82% 60%, #d76a3b21, transparent 32%), var(--surface-warm);
  flex-direction: column;
  justify-content: space-between;
  min-height: 58svh;
  padding-top: clamp(68px, 8vh, 88px);
  padding-bottom: clamp(40px, 5vh, 56px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.deleteAccount-module__cEYL8a__closing h2 {
  letter-spacing: -.075em;
  margin: 5vh 0;
  font-size: clamp(62px, 8.7vw, 148px);
  font-weight: 520;
  line-height: .85;
}

.deleteAccount-module__cEYL8a__closing h2 i {
  color: #f1eee847;
  font-style: normal;
  font-weight: 430;
}

.deleteAccount-module__cEYL8a__closingBottom {
  justify-content: space-between;
  align-items: flex-end;
  gap: 44px;
  display: flex;
}

.deleteAccount-module__cEYL8a__closingBottom p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.deleteAccount-module__cEYL8a__closingBottom a {
  min-height: 56px;
  color: var(--ink);
  border: 1px solid #f1eee857;
  border-radius: 999px;
  flex: none;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background .24s, color .24s;
  display: inline-flex;
}

.deleteAccount-module__cEYL8a__closingBottom a:hover {
  background: var(--ink);
  color: #17130f;
}

.deleteAccount-module__cEYL8a__footer {
  border-top: 1px solid var(--line);
  background: #090909;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  align-items: center;
  gap: 28px;
  min-height: 150px;
  display: grid;
}

.deleteAccount-module__cEYL8a__footerBrand {
  color: var(--ink);
  letter-spacing: -.07em;
  align-items: baseline;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
}

.deleteAccount-module__cEYL8a__footerBrand span {
  color: var(--warm);
  margin-left: .1em;
}

.deleteAccount-module__cEYL8a__footer > p {
  color: var(--subtle);
  letter-spacing: .13em;
  margin: 0;
  font-size: 8px;
  line-height: 1.7;
}

.deleteAccount-module__cEYL8a__footer > a {
  color: #f1eee8b8;
  font-size: 13px;
  text-decoration: none;
}

.deleteAccount-module__cEYL8a__footer nav {
  gap: 16px;
  display: flex;
}

.deleteAccount-module__cEYL8a__footer nav a {
  color: var(--subtle);
  font-size: 9px;
  text-decoration: none;
}

@media (min-width: 901px) {
  .deleteAccount-module__cEYL8a__hero {
    min-height: 52svh;
    padding-top: clamp(86px, 9vh, 102px);
    padding-bottom: 24px;
  }

  .deleteAccount-module__cEYL8a__hero h1 {
    margin: clamp(26px, 3.5vh, 42px) 0;
    font-size: clamp(60px, 7vw, 108px);
    line-height: .88;
  }

  .deleteAccount-module__cEYL8a__document {
    grid-template-columns: minmax(220px, .26fr) minmax(0, 1fr);
    gap: clamp(36px, 4vw, 72px);
    padding-top: clamp(48px, 6vh, 64px);
    padding-bottom: clamp(60px, 7.5vh, 84px);
  }

  .deleteAccount-module__cEYL8a__intro {
    padding-bottom: clamp(42px, 5.5vh, 60px);
  }

  .deleteAccount-module__cEYL8a__intro h2 {
    margin: 18px 0 22px;
    font-size: clamp(40px, 4.4vw, 72px);
    line-height: .94;
  }

  .deleteAccount-module__cEYL8a__intro > p {
    font-size: 14px;
    line-height: 1.72;
  }

  .deleteAccount-module__cEYL8a__summary {
    margin-top: 32px;
  }

  .deleteAccount-module__cEYL8a__summary > div {
    min-height: 112px;
    padding: 14px;
  }

  .deleteAccount-module__cEYL8a__summary strong {
    margin-top: 15px;
    font-size: 28px;
  }

  .deleteAccount-module__cEYL8a__article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: clamp(32px, 4.2vh, 44px) 0 clamp(38px, 5vh, 52px);
  }

  .deleteAccount-module__cEYL8a__article h3 {
    margin-bottom: 22px;
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.05;
  }

  .deleteAccount-module__cEYL8a__warning {
    padding: 24px;
  }

  .deleteAccount-module__cEYL8a__warning strong {
    margin: 14px 0 10px;
    font-size: clamp(19px, 1.8vw, 26px);
  }

  .deleteAccount-module__cEYL8a__dataGrid section {
    min-height: 154px;
    padding: 18px;
  }

  .deleteAccount-module__cEYL8a__dataGrid h4 {
    margin: 20px 0 9px;
  }

  .deleteAccount-module__cEYL8a__steps section {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 0 20px;
  }

  .deleteAccount-module__cEYL8a__requestHeading {
    gap: 32px;
    margin-bottom: 26px;
  }

  .deleteAccount-module__cEYL8a__formShell {
    padding: clamp(24px, 3vw, 36px);
  }

  .deleteAccount-module__cEYL8a__supportLine {
    padding: 16px 18px;
  }

  .deleteAccount-module__cEYL8a__closing {
    min-height: 46svh;
    padding-top: clamp(52px, 6vh, 68px);
    padding-bottom: clamp(34px, 4vh, 44px);
  }

  .deleteAccount-module__cEYL8a__closing h2 {
    margin: 3vh 0;
    font-size: clamp(54px, 6.2vw, 98px);
    line-height: .89;
  }

  .deleteAccount-module__cEYL8a__closingBottom a {
    min-height: 50px;
  }

  .deleteAccount-module__cEYL8a__footer {
    min-height: 124px;
  }

  .deleteAccount-module__cEYL8a__footerBrand {
    font-size: 32px;
  }
}

@media (max-width: 1100px) {
  .deleteAccount-module__cEYL8a__document {
    grid-template-columns: minmax(210px, .28fr) minmax(0, 1fr);
    gap: 54px;
  }
}

@media (max-width: 900px) {
  .deleteAccount-module__cEYL8a__document {
    grid-template-columns: minmax(0, 1fr);
  }

  .deleteAccount-module__cEYL8a__index {
    position: static;
  }

  .deleteAccount-module__cEYL8a__index nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
  }

  .deleteAccount-module__cEYL8a__index nav a {
    border-right: 1px solid var(--line);
    padding: 0 8px;
  }

  .deleteAccount-module__cEYL8a__indexMeta {
    display: none;
  }

  .deleteAccount-module__cEYL8a__footer {
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .deleteAccount-module__cEYL8a__footer nav {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .deleteAccount-module__cEYL8a__hero, .deleteAccount-module__cEYL8a__document, .deleteAccount-module__cEYL8a__closing, .deleteAccount-module__cEYL8a__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .deleteAccount-module__cEYL8a__hero {
    min-height: 560px;
    padding-top: 96px;
  }

  .deleteAccount-module__cEYL8a__heroTop > p, .deleteAccount-module__cEYL8a__heroBottom > span {
    display: none;
  }

  .deleteAccount-module__cEYL8a__hero h1 {
    font-size: clamp(58px, 17vw, 84px);
    line-height: .88;
  }

  .deleteAccount-module__cEYL8a__heroBottom p {
    font-size: 11px;
  }

  .deleteAccount-module__cEYL8a__document {
    gap: 54px;
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .deleteAccount-module__cEYL8a__index nav {
    scrollbar-width: none;
    grid-template-columns: repeat(3, minmax(172px, 1fr));
    overflow-x: auto;
  }

  .deleteAccount-module__cEYL8a__index nav::-webkit-scrollbar {
    display: none;
  }

  .deleteAccount-module__cEYL8a__intro h2 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .deleteAccount-module__cEYL8a__intro > p {
    font-size: 14px;
  }

  .deleteAccount-module__cEYL8a__summary {
    grid-template-columns: 1fr;
  }

  .deleteAccount-module__cEYL8a__summary > div {
    min-height: 112px;
  }

  .deleteAccount-module__cEYL8a__summary strong {
    margin-top: 15px;
  }

  .deleteAccount-module__cEYL8a__article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .deleteAccount-module__cEYL8a__article h3 {
    font-size: 28px;
    line-height: 1.08;
  }

  .deleteAccount-module__cEYL8a__warning {
    padding: 20px;
  }

  .deleteAccount-module__cEYL8a__warning strong {
    font-size: 21px;
  }

  .deleteAccount-module__cEYL8a__dataGrid {
    grid-template-columns: 1fr;
  }

  .deleteAccount-module__cEYL8a__dataGrid section {
    border-right: 0;
    min-height: 166px;
    padding: 19px;
  }

  .deleteAccount-module__cEYL8a__dataGrid h4 {
    margin-top: 22px;
  }

  .deleteAccount-module__cEYL8a__steps section {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .deleteAccount-module__cEYL8a__requestHeading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deleteAccount-module__cEYL8a__formShell {
    padding: 20px 16px;
  }

  .deleteAccount-module__cEYL8a__supportLine {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .deleteAccount-module__cEYL8a__closing {
    min-height: 540px;
  }

  .deleteAccount-module__cEYL8a__closing h2 {
    font-size: clamp(51px, 15vw, 78px);
    line-height: .89;
  }

  .deleteAccount-module__cEYL8a__closingBottom {
    flex-direction: column;
    align-items: stretch;
  }

  .deleteAccount-module__cEYL8a__closingBottom a {
    justify-content: space-between;
    width: 100%;
  }

  .deleteAccount-module__cEYL8a__footer {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 220px;
  }

  .deleteAccount-module__cEYL8a__footer nav {
    justify-content: flex-start;
    padding-left: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deleteAccount-module__cEYL8a__index nav a, .deleteAccount-module__cEYL8a__closingBottom a {
    transition: none;
  }
}

/*# sourceMappingURL=_16wd-9d._.css.map*/