@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --page: #f3f5f7;
  --surface: #fff;
  --ink: #162129;
  --muted: #747e88;
  --line: #e6eaee;
  --blue: #235af5;
  --blue-hover: #1949d2;
  --pink: #f53686;
  --hero: #040a10;
  --danger: #b52c44;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button,
input {
  min-width: 0;
}
a,
button {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 5px;
}
input:focus-visible {
  outline: none;
}
[hidden] {
  display: none !important;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-width {
  width: calc(100% - 88px);
  max-width: 1416px;
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 24px;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 112px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 122px;
  height: auto;
}
.header-caption {
  border-left: 1px solid #d9dfe5;
  padding-left: 26px;
  font-size: 13px;
  color: #707b85;
  letter-spacing: 0.02em;
}
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-rules {
  font-size: 14px;
  font-weight: 600;
  color: #56616b;
}
.header-rules:hover {
  color: var(--blue);
}
.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.support-link:hover {
  border-color: #b6c7f7;
  background: #f8faff;
}
.support-link > .icon:first-child {
  color: var(--blue);
  width: 19px;
  height: 19px;
}
.support-arrow {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  color: #79848e;
}
.main-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 0;
  padding: 10px;
  background: var(--surface);
  border-radius: 29px;
  min-height: 748px;
  border: 1px solid #e7ebef;
  box-shadow: 0 8px 48px -28px #1d334523;
}
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--hero);
  color: #f7f9fc;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 43px 43px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 28px;
  color: #b7c1cf;
}
.brand-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 16px #f5368644;
}
h1 {
  position: relative;
  margin: 0;
  font-size: clamp(46px, 4.8vw, 72px);
  font-weight: 600;
  line-height: 1.075;
  letter-spacing: -0.052em;
}
.slogan-lead,
.slogan-ending {
  display: block;
  font-size: 0.56em;
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.slogan-highlight {
  display: block;
  margin: 4px 0 14px;
  color: #ff5f9e;
  font-weight: 800;
}
.hero-visual {
  position: relative;
  flex: 1;
  min-height: 302px;
  margin-top: -38px;
  z-index: 1;
  overflow: hidden;
}
.collage {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  margin: 0;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 88%,
    transparent 100%
  );
  transition: transform 1.1s var(--ease);
  transform: translate3d(var(--art-x, 0px), var(--art-y, 0px), 0);
}
.art-label {
  position: absolute;
  bottom: 28px;
  left: 44px;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #c2c6d2;
  border: 1px solid #ffffff22;
  border-radius: 50px;
  padding: 8px 12px;
  background: #0a101aa8;
  backdrop-filter: blur(8px);
  rotate: -6deg;
}
.art-label .icon {
  width: 16px;
  height: 16px;
  color: #ff60a0;
}
.hero-bottom {
  margin: 0 42px;
  padding: 19px 0 22px;
  border-top: 1px solid #ffffff20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: #b0b9c7;
  letter-spacing: 0.035em;
  z-index: 2;
}
.hero-bottom-right {
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-bottom .icon {
  width: 17px;
  height: 17px;
  color: #fc629f;
}
.account {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 44px;
  min-width: 0;
}
.account-inner {
  width: 100%;
  max-width: 398px;
}
.pink-dot {
  color: var(--pink);
}
.input-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  background: #fafbfd;
  border: 1px solid #e0e5eb;
  border-radius: 10px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.input-shell:focus-within {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px #235af50d;
}
.input-shell input {
  width: 100%;
  height: 54px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0 15px;
  min-width: 0;
  font-size: 14px;
  color: var(--ink);
}
.input-shell input::placeholder {
  color: #9ba4ae;
  opacity: 1;
}
.input-shell:has(.field-icon) input {
  padding-left: 45px;
}
.field-icon {
  position: absolute;
  left: 15px;
  width: 19px;
  height: 19px;
  color: #8f9aa6;
  pointer-events: none;
}
.field-error {
  font-size: 12px;
  line-height: 1.45;
  margin: 6px 0 0;
  color: var(--danger);
}
.field-hint {
  font-size: 11px;
  line-height: 1.5;
  color: #7b8590;
  margin: 7px 0 0;
}
.input-shell:has([aria-invalid="true"]) {
  border-color: var(--danger);
  background: #fffafb;
}
.input-shell:has([aria-invalid="true"]):focus-within {
  box-shadow: 0 0 0 4px #b52c440d;
}
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #66717c;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input {
  width: 17px;
  height: 17px;
  flex: none;
  accent-color: var(--blue);
  margin: 0;
  cursor: pointer;
  outline-offset: 3px;
}
.checkbox-label input:focus-visible {
  outline: 3px solid #235af566;
}
.primary-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  min-height: 55px;
  padding: 14px 19px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 18px -8px #235af580;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.primary-button:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 22px -8px #235af588;
  transform: translateY(-1px);
}
.primary-button:active {
  transform: translateY(0);
}
.primary-button .icon {
  width: 20px;
  height: 20px;
  transition: translate 0.2s;
}
.primary-button:hover .icon {
  translate: 3px 0;
}
.primary-button:disabled {
  opacity: 0.7;
  transform: none;
}
.primary-button.is-loading .icon {
  animation: pulse 1s ease infinite;
}
.noscript-note {
  font-size: 13px;
}
.noscript-note a {
  text-decoration: underline;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 80px;
  padding: 20px 6px;
  font-size: 11px;
  color: #89939e;
}
.site-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer > a:hover {
  color: var(--blue);
}
.site-footer .icon {
  width: 13px;
  height: 13px;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

@media (min-width: 1600px) {
  .main-layout {
    min-height: 790px;
  }
  .hero-copy {
    padding: 48px 50px 0;
  }
  .hero-visual {
    margin-top: -26px;
  }
  .hero-bottom {
    margin-inline: 50px;
  }
  .account-inner {
    max-width: 420px;
  }
  .account {
    padding: 48px 56px;
  }
}
@media (max-width: 1150px) {
  .page-width {
    width: calc(100% - 48px);
  }
  .site-header {
    min-height: 96px;
  }
  .main-layout {
    grid-template-columns: 1fr 1fr;
    min-height: 690px;
  }
  .hero-copy {
    padding: 33px 28px 0;
  }
  h1 {
    font-size: clamp(40px, 5vw, 58px);
  }
  .hero-bottom {
    margin-inline: 28px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .account {
    padding: 35px 29px;
  }
  .header-caption {
    font-size: 11px;
    padding-left: 20px;
  }
  .site-header {
    gap: 20px;
  }
  .hero-visual {
    min-height: 255px;
    margin-top: -10px;
  }
  .art-label {
    left: 28px;
  }
  .header-right {
    gap: 22px;
  }
}
@media (max-width: 850px) {
  .header-caption {
    display: none;
  }
  .page-width {
    width: calc(100% - 36px);
  }
  .main-layout {
    grid-template-columns: 0.95fr 1fr;
    min-height: 660px;
    padding: 7px;
    border-radius: 24px;
  }
  .hero {
    border-radius: 17px;
  }
  .hero-copy {
    padding: 28px 22px 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
    margin-bottom: 22px;
  }
  h1 {
    font-size: 42px;
  }
  .account {
    padding: 26px 23px;
  }
  .hero-bottom {
    margin-inline: 22px;
    font-size: 9px;
  }
  .art-label {
    left: 22px;
  }
  .header-rules {
    display: none;
  }
  .account-inner {
    max-width: 390px;
  }
}
@media (max-width: 650px) {
  .page-width {
    width: calc(100% - 28px);
  }
  .site-header {
    min-height: 82px;
    gap: 8px;
    padding-inline: 5px;
  }
  .brand-logo {
    width: 100px;
  }
  .support-link {
    padding: 10px 11px;
    font-size: 11px;
    gap: 7px;
  }
  .support-link > .icon:first-child {
    width: 16px;
    height: 16px;
  }
  .support-arrow {
    display: none;
  }
  .main-layout {
    display: flex;
    flex-direction: column;
    padding: 6px;
    min-height: 0;
    border-radius: 22px;
  }
  .hero {
    min-height: 205px;
    flex: none;
    border-radius: 17px;
  }
  .hero-copy {
    padding: 24px 22px;
    max-width: 74%;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-bottom: 13px;
  }
  h1 {
    font-size: clamp(38px, 9vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }
  .hero-visual {
    position: absolute;
    inset: 0 0 0 38%;
    margin: 0;
    min-height: 0;
    z-index: 0;
    opacity: 0.78;
    overflow: hidden;
    align-items: center;
  }
  .collage {
    width: 180%;
    margin: 42px 0 0 -26%;
    mask-image: linear-gradient(90deg, transparent, #000 32%);
    transform: rotate(-10deg);
  }
  .hero-copy {
    background: linear-gradient(90deg, var(--hero) 20%, transparent);
  }
  .art-label,
  .hero-bottom {
    display: none;
  }
  .account {
    padding: 30px 21px 33px;
  }
  .account-inner {
    max-width: 420px;
  }
  .input-shell input {
    font-size: 16px;
    min-height: 52px;
  }
  .primary-button {
    font-size: 14px;
  }
  .site-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 10px;
    min-height: 66px;
    padding: 19px 7px;
  }
  .field-hint {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .page-width {
    width: calc(100% - 20px);
  }
  .support-link {
    padding: 9px;
  }
  .support-link > .icon {
    display: none;
  }
  .account {
    padding-inline: 15px;
  }
  .hero-copy {
    padding: 21px 18px;
  }
  .checkbox-label {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .collage {
    transform: none;
  }
}

/* Keep utility copy readable, including on compact layouts. */
.eyebrow,
.art-label,
.hero-bottom,
.header-caption,
.site-footer,
.field-hint {
  font-size: 12px;
}
.checkbox-label {
  font-size: 14px;
}
@media (max-width: 650px) {
  .eyebrow {
    letter-spacing: 0.06em;
    font-size: 10px;
  }
  .collage {
    height: auto;
    bottom: -12px;
  }
  .hero-copy {
    max-width: 80%;
  }
  .checkbox-label {
    font-size: 13px;
  }
}
