:root {
  --bg: #09060d;
  --bg-2: #0f0a16;
  --panel: rgba(20, 13, 29, 0.86);
  --panel-strong: #17101f;
  --text: #f6f1fb;
  --muted: #a89eaf;
  --purple: #9b5cff;
  --purple-2: #6f35d8;
  --gold: #e7b85e;
  --gold-2: #ad7a24;
  --border: rgba(255,255,255,0.09);
  --shadow: 0 30px 80px rgba(0,0,0,0.55);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(118, 54, 215, 0.23), transparent 31rem),
    radial-gradient(circle at 84% 16%, rgba(231, 184, 94, 0.09), transparent 26rem),
    linear-gradient(180deg, #09060d 0%, #0c0811 55%, #07050a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a { color: inherit; }

.page-shell {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(231,184,94,.35);
  border-radius: 13px;
  color: var(--gold);
  font-weight: 900;
  background: linear-gradient(145deg, rgba(155,92,255,.18), rgba(231,184,94,.08));
  box-shadow: inset 0 0 20px rgba(155,92,255,.09);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: .96rem;
  letter-spacing: .16em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
}

.stage-badge, .mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(231,184,94,.28);
  color: #f2ca78;
  background: rgba(231,184,94,.07);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(231,184,94,.65);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(231,184,94,.45); }
  70% { box-shadow: 0 0 0 8px rgba(231,184,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(231,184,94,0); }
}

.hero {
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(360px, .83fr);
  gap: 64px;
  align-items: center;
}

.eyebrow, .section-heading > span {
  color: var(--gold);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .19em;
}

h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: .91;
  letter-spacing: -.06em;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(211,174,255,.72);
  text-shadow: 0 0 50px rgba(155,92,255,.18);
}

.lead {
  max-width: 720px;
  margin: 0;
  color: #c9c0cf;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.release-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 28px;
}

.release-flow span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #82798a;
  background: rgba(255,255,255,.02);
  font-size: .73rem;
  font-weight: 700;
}

.release-flow span.active {
  color: #f2ca78;
  border-color: rgba(231,184,94,.32);
  background: rgba(231,184,94,.07);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-points > div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.018);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 8px;
  font-size: .94rem;
}

.hero-points span {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.signup-card {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 12%, rgba(155,92,255,.28), transparent 42%),
    radial-gradient(circle at 78% 88%, rgba(231,184,94,.16), transparent 34%);
  filter: blur(28px);
}

.card-content {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(26,17,37,.92), rgba(13,9,19,.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-content h2 {
  margin: 18px 0 11px;
  font-size: 2rem;
  letter-spacing: -.035em;
}

.card-content > p {
  margin: 0 0 25px;
  color: var(--muted);
  line-height: 1.62;
}

label[for="email"] {
  display: block;
  margin-bottom: 9px;
  color: #d8d0dd;
  font-size: .8rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  outline: none;
  background: rgba(7,5,10,.74);
  font: inherit;
  transition: .18s ease;
}

input[type="email"]:focus,
input[type="text"]:focus {
  border-color: rgba(155,92,255,.68);
  box-shadow: 0 0 0 4px rgba(155,92,255,.10);
}

button {
  height: 54px;
  cursor: pointer;
  color: #130d19;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #b783ff, #e7b85e);
  font: inherit;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 15px 40px rgba(155,92,255,.17);
  transition: transform .18s ease, filter .18s ease;
}

button:hover { transform: translateY(-1px); filter: brightness(1.05); }
button:disabled { cursor: wait; opacity: .65; transform: none; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 15px;
  color: #958c9d;
  font-size: .76rem;
  line-height: 1.48;
}

.consent input { margin-top: 3px; accent-color: #9b5cff; }

.form-status {
  min-height: 22px;
  margin-top: 13px;
  font-size: .83rem;
  font-weight: 700;
}

.form-status.success { color: #91e6b2; }
.form-status.error { color: #ff9b9b; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #776f7d;
  font-size: .7rem;
  font-weight: 700;
}

.trust-row span::before {
  content: "•";
  margin-right: 7px;
  color: var(--gold);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.details {
  padding: 62px 0 88px;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-grid article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
}

.number {
  color: rgba(231,184,94,.6);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.detail-grid h3 {
  margin: 24px 0 8px;
  font-size: 1.14rem;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: .9rem;
}

.notice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 76px;
  padding: 30px;
  border: 1px solid rgba(231,184,94,.15);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(155,92,255,.06), rgba(231,184,94,.05));
}

.notice h2 {
  margin: 14px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
}

.notice p {
  margin: 0;
  color: #aaa0b1;
  line-height: 1.65;
}

.mini-badge.muted {
  color: #b7a98d;
  border-color: rgba(231,184,94,.14);
  background: rgba(231,184,94,.035);
}

footer {
  min-height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  color: #7f7785;
  font-size: .75rem;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer strong { color: #a89faf; }

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

footer a {
  text-decoration: none;
}

footer a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .hero-grid,
  .section-heading,
  .notice {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-points,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-points > div { min-height: auto; }

  h1 { font-size: clamp(3.2rem, 13vw, 6.3rem); }

  .signup-card { max-width: 680px; }

  footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 24px, 1380px); }

  .topbar {
    min-height: 78px;
    align-items: flex-start;
    padding: 17px 0;
  }

  .brand-copy small { display: none; }

  .stage-badge {
    padding: 8px 10px;
    font-size: .64rem;
  }

  .hero { padding: 48px 0 56px; }

  .card-content { padding: 23px; }

  h1 { margin-top: 14px; }

  .lead { font-size: 1rem; }

  .release-flow { gap: 7px; }

  .release-flow span {
    font-size: .66rem;
    padding: 7px 9px;
  }
}

.signup-card input[type="text"] {
  margin-bottom: 17px;
}


/* Developer protection / casual-copy deterrence */
html, body, body * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

input,
textarea,
select,
option,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  user-select: text !important;
}

.developer-protected {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8d8494;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.developer-protected::before {
  content: "◆";
  color: #e7b85e;
  font-size: .55rem;
}
