:root {
  --bg: #0d1017;
  --bg-raised: #151a24;
  --border: #262d3b;
  --text: #dfe4ee;
  --gold: #c9a227;
  --gold-bright: #e8c65a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: #0d1017;
  color: #dfe4ee;
  font-family: "Open Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

a {
  color: #e8c65a;
  text-decoration: none;
}
a:hover, a:focus-visible {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid #e8c65a;
  outline-offset: 2px;
}

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

body:lang(ja),
body [lang=ja] {
  font-family: "Open Sans", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, "Noto Sans JP", sans-serif;
}

h1:lang(ja),
h2:lang(ja),
h3:lang(ja) {
  font-family: "Playfair Display", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, "Noto Sans JP", serif;
}

body:lang(ko),
body [lang=ko] {
  font-family: "Open Sans", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
}

h1:lang(ko),
h2:lang(ko),
h3:lang(ko) {
  font-family: "Playfair Display", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", serif;
}

body:lang(zh),
body [lang=zh] {
  font-family: "Open Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

h1:lang(zh),
h2:lang(zh),
h3:lang(zh) {
  font-family: "Playfair Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", serif;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.shell {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 10;
  padding: 8px 14px;
  border-radius: 10px;
  background: #c9a227;
  color: #1a1405;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(13, 16, 23, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #262d3b;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dfe4ee;
}
.brand:hover {
  text-decoration: none;
}
.brand__mark {
  flex: none;
  color: #c9a227;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand__tagline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #98a1b3;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.site-nav__link {
  padding: 8px 12px;
  border-radius: 10px;
  color: #98a1b3;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.site-nav__link:hover, .site-nav__link:focus-visible {
  background: #151a24;
  color: #dfe4ee;
  text-decoration: none;
}
.site-nav__link--button {
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.site-nav__logout {
  display: inline-flex;
  margin: 0;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid #262d3b;
  background: #090b10;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 26px;
}
.site-footer__links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.site-footer__note {
  margin: 0;
  font-size: 13px;
  color: #98a1b3;
}

.page {
  padding-block: 56px 72px;
}
.page--narrow {
  max-width: 480px;
}
.page__head {
  margin-bottom: 28px;
}
.page__title {
  margin-bottom: 6px;
  font-size: 33px;
  letter-spacing: 0.02em;
}
.page__lead {
  margin: 0 0 24px;
  color: #98a1b3;
}

.lang {
  position: relative;
  margin-left: 4px;
}
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border: 1px solid #262d3b;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #98a1b3;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.lang__toggle::-webkit-details-marker {
  display: none;
}
.lang__toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.lang__toggle:hover {
  background: #151a24;
  color: #dfe4ee;
}
.lang[open] .lang__toggle {
  border-color: #c9a227;
  color: #dfe4ee;
}
.lang[open] .lang__toggle::after {
  margin-top: 3px;
  transform: rotate(-135deg);
}
.lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 6;
  min-width: 170px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #151a24;
  border: 1px solid #262d3b;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.lang__item {
  display: block;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #c6cddb;
  white-space: nowrap;
}
.lang__item:hover {
  background: #0d1017;
  color: #dfe4ee;
  text-decoration: none;
}
.lang__item--active {
  color: #e8c65a;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(180deg, #e8c65a, #c9a227);
  color: #1a1405;
}
.btn--primary:hover {
  background: linear-gradient(180deg, #f6e08f, #e8c65a);
}
.btn--ghost {
  background: rgba(13, 16, 23, 0.55);
  border-color: rgba(232, 198, 90, 0.45);
  color: #e8c65a;
}
.btn--ghost:hover {
  background: rgba(13, 16, 23, 0.85);
  border-color: #e8c65a;
}
.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 14px;
}
.btn--block {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding-block: 64px;
}

.card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid #262d3b;
  border-radius: 10px;
  background: #151a24;
}
.card__title {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0.02em;
}
.card__body {
  margin: 0;
  color: #98a1b3;
  font-size: 15px;
}
.card__badge {
  display: inline-block;
  margin: 14px 0 0;
  padding: 3px 10px;
  border: 1px solid #262d3b;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98a1b3;
}

.panels {
  display: grid;
  gap: 20px;
}
@media (min-width: 860px) {
  .panels {
    grid-template-columns: repeat(2, 1fr);
  }
  .panels > .panel:first-child {
    grid-column: 1/-1;
  }
}

.panel {
  padding: 28px;
  border: 1px solid #262d3b;
  border-radius: 10px;
  background: #151a24;
}
.panel__title {
  margin-bottom: 8px;
  font-size: 23px;
  letter-spacing: 0.02em;
}
.panel__lead {
  margin: 0 0 24px;
  color: #98a1b3;
}
.panel__foot {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #262d3b;
  font-size: 14px;
  color: #98a1b3;
}

.facts {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr;
  gap: 8px 20px;
  margin: 0;
  font-size: 15px;
}
.facts dt {
  color: #98a1b3;
}
.facts dd {
  margin: 0;
  word-break: break-word;
}

.form {
  display: grid;
  gap: 18px;
}
.form > div,
.form .form-row {
  display: grid;
  gap: 6px;
}
.form label {
  font-size: 14px;
  font-weight: 600;
  color: #98a1b3;
}
.form input[type=text],
.form input[type=email],
.form input[type=password],
.form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #262d3b;
  border-radius: 10px;
  background: #090b10;
  color: #dfe4ee;
  font-family: inherit;
  font-size: 15px;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=password]:focus,
.form select:focus {
  border-color: #c9a227;
  outline: none;
}
.form .form-row--check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
}
.form .form-row--check label {
  font-weight: 400;
}
.form .help-text,
.form small {
  font-size: 13px;
  color: #98a1b3;
}
.form ul {
  margin: 0;
  padding-left: 18px;
  color: #e5654f;
  font-size: 14px;
}

.turnstile {
  min-height: 65px;
}
.turnstile iframe {
  max-width: 100%;
}

.flashes {
  padding-top: 20px;
}

.flash {
  margin: 0 0 10px;
  padding: 12px 16px;
  border: 1px solid #262d3b;
  border-left-width: 3px;
  border-radius: 10px;
  background: #151a24;
  font-size: 15px;
}
.flash--success {
  border-left-color: #5fbf8a;
}
.flash--error {
  border-left-color: #e5654f;
  color: #ffd9d2;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(78vh, 660px);
  padding-block: 96px;
  background-image: image-set(url("../images/hero-bg-BT9pytB.webp") type("image/webp"), url("../images/hero-bg-hCx3k3K.png") type("image/png"));
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  isolation: isolate;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, #0d1017 2%, rgba(13, 16, 23, 0.35) 55%, rgba(13, 16, 23, 0.55) 100%), linear-gradient(to right, rgba(9, 11, 16, 0.85) 0%, rgba(9, 11, 16, 0.2) 65%);
}
.hero__inner {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.hero__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8c65a;
}
.hero__motto {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
}
.hero__lead {
  margin: 0 0 32px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #c6cddb;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.error-page main {
  display: flex;
  align-items: center;
}

.error {
  max-width: 620px;
  text-align: center;
}
.error__code {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 104px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #262d3b;
}
@media (max-width: 860px) {
  .error__code {
    font-size: 76px;
  }
}
.error__title {
  margin: 10px 0 12px;
  font-size: 33px;
  letter-spacing: 0.02em;
}
.error__lead {
  margin: 0 auto 28px;
  max-width: 46ch;
  color: #98a1b3;
}
.error__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
