:root {
  --bg: #020506;
  --panel: rgba(2, 10, 12, 0.90);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --cyan: #18e9ff;
  --gold: #ffbd28;
  --orange: #ff7a16;
  --green: #42ff93;
  --text: #f6fbff;
  --muted: #b9c9cf;
  --line: rgba(24, 233, 255, 0.18);
  --line-gold: rgba(255, 189, 40, 0.28);
  --danger: #ff6b6b;
  --success: #4aff8a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  overflow-x: hidden;
}

#matrixCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 18%, rgba(24, 233, 255, 0.07), transparent 30%),
    radial-gradient(circle at 72% 72%, rgba(255, 122, 22, 0.08), transparent 34%),
    #020506;
  opacity: 0.55;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: start center;
  padding: clamp(14px, 3vw, 36px) 12px 48px;
}

.card {
  width: min(850px, 100%);
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(24, 233, 255, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(24, 233, 255, 0.10), transparent 34%),
    linear-gradient(315deg, rgba(255, 122, 22, 0.12), transparent 34%),
    var(--panel);
  box-shadow:
    0 20px 72px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.logo-wrap {
  width: min(680px, 100%);
  margin: 0 auto 8px;
  filter:
    drop-shadow(0 0 12px rgba(24, 233, 255, 0.34))
    drop-shadow(0 0 10px rgba(255, 122, 22, 0.20));
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 900;
}

h1 {
  margin: 0 auto 12px;
  max-width: 680px;
  font-size: clamp(2.05rem, 7.4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
  background: linear-gradient(90deg, #ffffff 0%, #dffaff 35%, var(--cyan) 56%, var(--gold) 78%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.40);
}

.lead {
  max-width: 620px;
  margin: 0 auto 18px;
  color: rgba(246, 251, 255, 0.76);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.5;
}

.signup-form,
.pro-pass,
.rules,
.apps {
  width: min(700px, 100%);
  margin: 16px auto 0;
}

.signup-form {
  text-align: left;
  padding: clamp(15px, 3vw, 22px);
  border: 1px solid rgba(24, 233, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(24, 233, 255, 0.08), transparent 45%),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 1px 18px rgba(24, 233, 255, 0.05);
}

.signup-form label:not(.rule-check) {
  display: block;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 7px;
  border: 1px solid rgba(24, 233, 255, 0.30);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.52);
}

input[type="email"] {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 13px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font: inherit;
}

input[type="email"]::placeholder {
  color: rgba(246, 251, 255, 0.42);
}

button {
  border: 0;
  border-radius: 13px;
  padding: 0 18px;
  min-height: 50px;
  color: #061013;
  background: linear-gradient(90deg, var(--cyan), var(--gold) 62%, var(--orange));
  font-weight: 1000;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 122, 22, 0.18);
}

button:disabled {
  opacity: 0.68;
  cursor: wait;
}

.rule-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 189, 40, 0.30);
  border-radius: 16px;
  background: rgba(255, 189, 40, 0.07);
  color: rgba(246, 251, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rule-check input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.form-message {
  min-height: 22px;
  margin: 10px 2px 0;
  color: rgba(246, 251, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.4;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.pro-pass {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 3vw, 24px);
  border-radius: 22px;
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 189, 40, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 189, 40, 0.09), rgba(24, 233, 255, 0.06) 48%, rgba(255, 122, 22, 0.11)),
    rgba(0, 0, 0, 0.40);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.26);
}

.pro-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: translateX(-62%);
  pointer-events: none;
}

.pass-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.pass-topline span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 1000;
}

.pass-topline strong {
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  color: #041012;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pro-pass p {
  margin: 0;
  color: rgba(246, 251, 255, 0.84);
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
  line-height: 1.42;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.rules,
.apps {
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid rgba(24, 233, 255, 0.23);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.30);
  text-align: left;
}

.rules h2,
.apps h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.rules ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 251, 255, 0.78);
  line-height: 1.46;
}

.rules li::marker {
  color: var(--gold);
}

.rules strong {
  color: #fff;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.app-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 13px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: var(--panel-soft);
}

.app-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.app-card h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1rem;
}

.app-card p {
  margin: 0;
  color: rgba(246, 251, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.34;
}

.launch-note {
  max-width: 650px;
  margin: 16px auto 0;
  color: rgba(246, 251, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.4;
}

footer {
  position: relative;
  z-index: 1;
  padding: 0 16px 16px;
  color: rgba(246, 251, 255, 0.46);
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 8px 4px 28px;
  }

  .card {
    border-radius: 18px;
    padding: 16px 12px 20px;
  }

  .logo-wrap {
    width: min(100%, 560px);
    margin-bottom: 4px;
  }

  .lead {
    margin-bottom: 14px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }

  .pass-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .card {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .app-card {
    grid-template-columns: 62px 1fr;
  }

  .app-card img {
    width: 62px;
    height: 62px;
    border-radius: 15px;
  }
}


/* Privacy policy page */
footer a {
  color: rgba(24, 233, 255, 0.78);
  text-decoration: none;
  margin-left: 10px;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.policy-shell {
  align-items: start;
}

.policy-card {
  text-align: left;
  width: min(900px, 100%);
}

.policy-card h1 {
  text-align: left;
  max-width: none;
  margin-bottom: 12px;
}

.policy-lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 780px;
}

.policy-logo-wrap {
  width: min(420px, 100%);
  margin: 0 0 18px;
  filter:
    drop-shadow(0 0 10px rgba(24, 233, 255, 0.28))
    drop-shadow(0 0 9px rgba(255, 122, 22, 0.16));
}

.back-link {
  display: inline-flex;
  margin: 0 0 18px;
  color: rgba(24, 233, 255, 0.84);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
}

.back-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.policy-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(24, 233, 255, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 251, 255, 0.72);
  font-size: 0.86rem;
}

.policy-meta a,
.policy-section a {
  color: var(--cyan);
}

.policy-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.policy-section h2 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.policy-section p,
.policy-section li {
  color: rgba(246, 251, 255, 0.74);
  line-height: 1.58;
}

.policy-section p {
  margin: 0 0 10px;
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

.policy-section li::marker {
  color: var(--gold);
}

@media (max-width: 720px) {
  .policy-card h1 {
    font-size: 2.05rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .policy-meta span {
    width: 100%;
    border-radius: 14px;
  }

  footer {
    display: grid;
    gap: 6px;
  }

  footer a {
    margin-left: 0;
  }
}

/* RevList large top banner */
.revlist-hero-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: clamp(300px, 42vw, 370px);
  margin: 4px auto 28px;
  overflow: hidden;
  border: 1px solid rgba(24, 233, 255, 0.38);
  border-radius: 28px;
  color: #ffffff;
  background: #03090d;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 48px rgba(24, 233, 255, 0.08);
  text-align: left;
  text-decoration: none;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.revlist-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(24, 233, 255, 0.80), rgba(255, 189, 40, 0.72), rgba(255, 122, 22, 0.74))
    top / 100% 2px no-repeat;
  opacity: 0.9;
}

.revlist-hero-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 189, 40, 0.50);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 58px rgba(24, 233, 255, 0.13);
}

.revlist-hero-art,
.revlist-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.revlist-hero-art {
  z-index: -3;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease, filter 200ms ease;
}

.revlist-hero-banner:hover .revlist-hero-art {
  transform: scale(1.018);
  filter: brightness(1.04);
}

.revlist-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 7, 10, 0.98) 0%, rgba(1, 7, 10, 0.91) 37%, rgba(1, 7, 10, 0.42) 64%, rgba(1, 7, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.34));
}

.revlist-hero-copy {
  position: relative;
  z-index: 2;
  width: min(440px, 55%);
  padding: clamp(26px, 5vw, 48px);
}

.revlist-hero-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.revlist-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.revlist-hero-brand b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #061013;
  background: linear-gradient(135deg, var(--cyan), var(--gold) 58%, var(--orange));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 12px 28px rgba(255, 122, 22, 0.20);
  font-size: 1rem;
}

.revlist-hero-beta {
  padding: 6px 9px;
  border: 1px solid rgba(66, 255, 147, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 255, 147, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 900;
}

.revlist-hero-copy h2 {
  max-width: 390px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 6.2vw, 4.3rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.62);
}

.revlist-hero-copy h2 em {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--gold) 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.revlist-hero-copy > p {
  margin: 16px 0 21px;
  color: rgba(246, 251, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: clamp(0.72rem, 1.6vw, 0.86rem);
  font-weight: 900;
}

.revlist-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px;
  border-radius: 14px;
  color: #061013;
  background: linear-gradient(90deg, var(--cyan), var(--gold) 60%, var(--orange));
  box-shadow:
    0 14px 32px rgba(255, 122, 22, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.30) inset;
  font-weight: 1000;
}

.revlist-hero-cta strong {
  font-size: 1.05rem;
}

.revlist-hero-chips {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  display: flex;
  gap: 7px;
}

.revlist-hero-chips span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(246, 251, 255, 0.82);
  background: rgba(2, 8, 11, 0.76);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 850;
}

@media (max-width: 720px) {
  .revlist-hero-banner {
    min-height: 390px;
    margin-bottom: 23px;
    border-radius: 22px;
  }

  .revlist-hero-art {
    object-position: 66% center;
  }

  .revlist-hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 7, 10, 0.96) 0%, rgba(1, 7, 10, 0.79) 62%, rgba(1, 7, 10, 0.30) 100%),
      linear-gradient(180deg, rgba(1, 7, 10, 0.05) 0%, rgba(1, 7, 10, 0.16) 54%, rgba(1, 7, 10, 0.92) 100%);
  }

  .revlist-hero-copy {
    align-self: end;
    width: min(420px, 92%);
    padding: 24px 20px 78px;
  }

  .revlist-hero-copy h2 {
    max-width: 330px;
    font-size: clamp(2.4rem, 13vw, 3.55rem);
    line-height: 0.91;
  }

  .revlist-hero-copy > p {
    margin: 13px 0 17px;
  }

  .revlist-hero-chips {
    right: auto;
    left: 20px;
    bottom: 18px;
    max-width: calc(100% - 40px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .revlist-hero-chips::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 420px) {
  .revlist-hero-banner {
    min-height: 365px;
  }

  .revlist-hero-topline {
    margin-bottom: 14px;
  }

  .revlist-hero-copy {
    width: 100%;
    padding: 22px 16px 72px;
  }

  .revlist-hero-cta {
    min-height: 45px;
  }

  .revlist-hero-chips {
    left: 16px;
    max-width: calc(100% - 32px);
  }
}
