:root {
  color-scheme: dark;
  --bg: #070613;
  --panel: rgba(14, 12, 34, .78);
  --text: #faf7ff;
  --muted: rgba(250, 247, 255, .68);
  --line: rgba(255, 255, 255, .13);
  --pink: #ff48d1;
  --violet: #8d62ff;
  --cyan: #39e6ff;
  --yellow: #ffd66c;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--bg); }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--text);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 72, 209, .15), transparent 31%),
    radial-gradient(circle at 81% 23%, rgba(57, 230, 255, .10), transparent 29%),
    radial-gradient(circle at 50% 115%, rgba(107, 61, 255, .12), transparent 40%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.access-shell {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px clamp(18px, 4vw, 64px) 20px;
}

.grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .055;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  animation: drift 10s ease-in-out infinite alternate;
}

.ambient-one { left: -18vw; top: 24%; background: var(--pink); }
.ambient-two { right: -18vw; bottom: -18vw; background: var(--cyan); animation-delay: -4s; }

.access-header, .access-footer {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.access-header { justify-content: flex-end; }

.buy-link {
  padding: 11px 17px;
  color: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.buy-link:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(57,230,255,.45); }

.access-stage {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 6vh, 72px) 0;
  display: grid;
  grid-template-columns: minmax(470px, 1.05fr) minmax(500px, .95fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
}

.visual { position: relative; width: min(530px, 100%); aspect-ratio: 1; margin: auto; }
.emblem-visual { display: grid; place-items: center; isolation: isolate; }
.emblem-aura {
  position: absolute;
  z-index: 0;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153,82,255,.24), rgba(255,72,209,.09) 45%, transparent 71%);
  filter: blur(24px);
  animation: aura-breathe 4.8s ease-in-out infinite;
}
.hero-emblem {
  position: relative;
  z-index: 3;
  width: 67%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.42)) drop-shadow(0 0 30px rgba(215,102,255,.21));
}
.orbit {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(210,143,255,.26);
  box-shadow: inset 0 0 32px rgba(141,98,255,.04), 0 0 22px rgba(141,98,255,.06);
}
.orbit i {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  left: 50%;
  top: -5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan), 0 0 19px rgba(57,230,255,.72);
}
.orbit-one { width: 82%; aspect-ratio: 1; animation: orbit-spin 15s linear infinite; }
.orbit-two { width: 93%; aspect-ratio: 1; border-style: dashed; border-color: rgba(255,72,209,.18); animation: orbit-spin-reverse 22s linear infinite; }
.orbit-two i { width: 8px; height: 8px; top: 19%; left: 3%; background: var(--pink); box-shadow: 0 0 8px var(--pink), 0 0 18px rgba(255,72,209,.7); }
.orbit-three { width: 72%; aspect-ratio: 1; border-color: rgba(255,255,255,.11); animation: orbit-spin 19s linear infinite -7s; }
.orbit-three i { width: 7px; height: 7px; left: auto; right: 7%; top: 20%; background: #ffd66c; box-shadow: 0 0 8px #ffd66c, 0 0 17px rgba(255,214,108,.65); }

.access-card {
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(20,15,47,.88), rgba(9,8,25,.78));
  box-shadow: 0 34px 100px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}
.access-card:before { content: ""; position: absolute; inset: 0 auto auto 10%; width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent); opacity: .75; }

.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 13px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 14px var(--pink); animation: pulse 1.8s ease-in-out infinite; }

h1 { margin: 18px 0 16px; font-size: clamp(39px, 5vw, 70px); line-height: .98; letter-spacing: -.055em; }
h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, var(--pink), #b686ff 48%, var(--cyan)); background-clip: text; -webkit-background-clip: text; }
.intro { max-width: 660px; margin: 0 0 27px; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; }

.access-form label { display: block; margin: 0 0 9px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 750; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.field-row input {
  width: 100%; min-width: 0; height: 58px; padding: 0 18px;
  color: #fff; text-transform: uppercase; letter-spacing: .075em; font-weight: 750;
  border: 1px solid rgba(255,255,255,.17); border-radius: 17px; outline: none;
  background: rgba(255,255,255,.06); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field-row input::placeholder { color: rgba(255,255,255,.34); text-transform: none; letter-spacing: 0; font-weight: 500; }
.field-row input:focus { border-color: rgba(57,230,255,.68); background: rgba(255,255,255,.08); box-shadow: 0 0 0 4px rgba(57,230,255,.09), 0 0 32px rgba(57,230,255,.08); }
.field-row button {
  min-height: 58px; padding: 0 24px; border: 0; border-radius: 17px; cursor: pointer;
  color: #130b1d; font-weight: 900; background: linear-gradient(110deg, var(--yellow), #ff91c8 58%, var(--pink));
  box-shadow: 0 16px 38px rgba(255,72,209,.22); transition: transform .2s ease, filter .2s ease;
}
.field-row button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.field-row button:disabled { cursor: wait; opacity: .68; transform: none; }

.form-meta { min-height: 25px; padding: 8px 3px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 18px; color: rgba(255,255,255,.44); font-size: 12px; }
.message { color: #ff9ccf; font-weight: 700; }
.message.success { color: #65f6c1; }

.flow-note { margin-top: 20px; padding: 15px 16px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; border: 1px solid rgba(141,98,255,.22); border-radius: 18px; background: rgba(141,98,255,.08); }
.flow-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.flow-note strong { color: #fff; }
.flow-icon { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(57,230,255,.36); border-radius: 13px; color: var(--cyan); font-size: 12px; font-weight: 900; box-shadow: inset 0 0 16px rgba(57,230,255,.08); }

.actions { margin-top: 21px; display: flex; flex-wrap: wrap; gap: 8px 12px; color: var(--muted); font-size: 14px; }
.actions a { color: var(--cyan); font-weight: 800; }
.actions a:hover { text-decoration: underline; }

.access-footer { padding-top: 10px; color: rgba(255,255,255,.4); font-size: 12px; }
.access-footer div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.access-footer a:hover { color: rgba(255,255,255,.78); }

@keyframes pulse { 50% { opacity: .42; transform: scale(.72); } }
@keyframes drift { to { transform: translate3d(5vw, -3vh, 0) scale(1.13); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes aura-breathe { 50% { opacity: .65; transform: scale(1.08); } }
@media (max-width: 900px) {
  .access-stage { grid-template-columns: 1fr; gap: 18px; padding-top: 20px; }
  .visual { width: min(470px, 82vw); margin-bottom: -20px; }
  .access-card { position: relative; z-index: 2; }
}

@media (max-width: 600px) {
  .access-shell { padding: 12px 12px 16px; }
  .access-header { padding: 0 4px; }
  .buy-link { padding: 9px 13px; font-size: 13px; }
  .access-stage { padding: 13px 0 26px; }
  body { background-attachment: scroll; }
  .visual { width: min(350px, 86vw); margin: -8px auto -30px; }
  .access-card { padding: 25px 18px 22px; border-radius: 26px; }
  h1 { font-size: clamp(38px, 12vw, 52px); }
  .field-row { grid-template-columns: 1fr; }
  .field-row button { width: 100%; }
  .form-meta { display: block; }
  .message { display: block; padding-top: 5px; }
  .access-footer { align-items: flex-start; flex-direction: column; }
  .access-footer div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
