:root {
  --ink: #15203f;
  --blue: #203f89;
  --blue-deep: #173270;
  --gold: #d6ae54;
  --paper: #f4f1e9;
  --muted: #687087;
}

* { box-sizing: border-box; }

body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

button,
input { font: inherit; }

.access-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.access-card {
  padding: clamp(30px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-lockup {
  position: absolute;
  top: clamp(26px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: 21px;
}

.brand-lockup svg {
  width: 40px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgb(214 174 84 / 16%);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

h1 em {
  color: var(--blue);
  font-weight: 400;
}

.access-copy {
  max-width: 510px;
  margin: 34px 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

form { max-width: 510px; }

label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.password-field {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--ink);
}

.password-field:focus-within { border-color: var(--blue); }

.password-field input {
  min-width: 0;
  flex: 1;
  padding: 13px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
}

.password-field button {
  padding: 10px 0 10px 20px;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.form-message {
  min-height: 21px;
  margin: 10px 0 4px;
  color: #a63832;
  font-size: 12px;
}

.submit-button {
  width: 100%;
  padding: 17px 19px;
  display: flex;
  justify-content: space-between;
  border: 0;
  color: white;
  background: var(--blue);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: background 180ms ease, transform 180ms ease;
}

.submit-button:hover { background: var(--blue-deep); }
.submit-button:active { transform: translateY(1px); }
.submit-button:disabled { cursor: wait; opacity: 0.65; }

.access-aside {
  position: relative;
  padding: clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: white;
  background: var(--blue-deep);
}

.access-aside::before,
.access-aside::after {
  position: absolute;
  width: min(48vw, 690px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
}

.access-aside::before { right: -45%; bottom: -12%; }
.access-aside::after { right: -15%; bottom: -45%; }

.aside-domain,
.aside-caption {
  z-index: 1;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.aside-domain { color: #c3cde3; }
.aside-caption { color: var(--gold); }

.aside-number {
  z-index: 1;
  margin: auto 0;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(110px, 15vw, 230px);
  line-height: 0.68;
  letter-spacing: -0.09em;
}

@media (max-width: 820px) {
  .access-shell { grid-template-columns: 1fr; }
  .access-card { min-height: 100svh; padding-top: 120px; }
  .access-aside { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}
