@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --panel: #141414;
  --ink: #f4f4f4;
  --mute: #a3a3a3;
  --lime: #b8ff00;
  --orange: #ff7a00;
  --red: #ff1e3c;
  --line: #2a2a2a;
  --max: 1140px;
}

html, body {
  margin: 0 !important;
  background: var(--bg) !important;
  background-color: var(--bg) !important;
  background-image: none !important;
  background-attachment: scroll !important;
  color: var(--ink) !important;
  font-family: "Source Sans 3", Arial, sans-serif !important;
}

.new_bg_1 { display: none !important; }
.new_bg_2 {
  display: block !important;
  width: 100% !important;
  background: #000 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: none !important;
  padding: 12px 0 !important;
  min-height: 0 !important;
  text-align: left !important;
}
.new_bg_2 .container { max-width: var(--max); }
.new_bg_2 .row > [class*="col-"] {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.new_bg_2_logo { float: none !important; }
.new_bg_2_logo img { width: 160px !important; max-width: 50vw; filter: none !important; }
.new_bg_2_href { float: none !important; width: auto !important; min-width: 0 !important; display: flex !important; gap: 22px; flex-wrap: wrap; }
.new_bg_2_href a {
  margin: 0 !important; font-family: Oswald, sans-serif !important; font-size: 14px !important;
  font-weight: 600 !important; letter-spacing: .04em; text-transform: uppercase;
  color: var(--mute) !important; text-decoration: none !important; text-shadow: none !important;
}
.new_bg_2_href a:hover { color: var(--lime) !important; text-shadow: none !important; }
.new_bg_2_enter { float: none !important; }

.i_button_1, .i_button_2 {
  display: inline-block !important; font-family: Oswald, sans-serif !important; font-size: 15px !important;
  font-weight: 700 !important; letter-spacing: .05em; text-transform: uppercase; text-decoration: none !important;
  color: #111 !important; background: var(--lime) !important; border: 0 !important; border-radius: 4px !important;
  padding: 12px 22px !important; box-shadow: none !important;
}
.i_button_1:hover, .i_button_2:hover, .i_button_1:focus, .i_button_2:focus, .i_button_1:active, .i_button_2:active {
  background: #d2ff4a !important; color: #111 !important; transform: none !important; box-shadow: none !important;
}
.ax-btn-dark { background: #1c1c1c !important; color: #fff !important; border: 1px solid #333 !important; }

/* Landing blocks sit on .ax-shell; legal pages need solid dark panels (was blue gradient). */
.new_bg_3, .new_bg_4, .new_bg_4_0, .new_bg_5, .new_bg_6 { background: transparent !important; }
.new_bg_7,
.new_bg_8 {
  background: #050505 !important;
  background-image: none !important;
  color: #f2f2f2 !important;
}
.new_bg_7 .h2_logo1,
.new_bg_7 h2 { color: var(--lime) !important; text-shadow: 0 0 12px rgba(184, 255, 0, 0.35) !important; }
.new_bg_7 .h2_logo2 { border-bottom-color: var(--lime) !important; }
.st_1 { color: #e8e8e8 !important; }
.st_2 { color: var(--lime) !important; }

.ax-shell {
  background:
    radial-gradient(720px 400px at 0% 0%, rgba(184,255,0,.08), transparent 60%),
    radial-gradient(640px 360px at 100% 0%, rgba(255,122,0,.07), transparent 55%),
    var(--bg);
}
.ax-wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.ax-brand {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(90deg, var(--lime), var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ax-brand--sm {
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.ax-hero { padding: 48px 0 40px; border-bottom: 1px solid var(--line); position: relative; }
.ax-hero--bleed {
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
}
.ax-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: ax-hero-pan 18s ease-in-out infinite alternate;
}
.ax-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.72) 48%, rgba(5,5,5,.45) 100%),
    linear-gradient(0deg, rgba(5,5,5,.85) 0%, transparent 45%);
}
@keyframes ax-hero-pan {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}
.ax-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  max-width: 720px;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(var(--max), calc(100% - 40px));
  animation: ax-rise .7s ease-out both;
}
@keyframes ax-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.ax-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.ax-kicker { font-family: Oswald, sans-serif; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); margin: 0 0 12px; }
.ax-hero h1,
.ax-pagehero h1 {
  margin: 0 0 14px; font-family: Oswald, sans-serif; font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.08; text-transform: uppercase; letter-spacing: .02em; color: #fff;
}
.ax-hero h1 span,
.ax-pagehero h1 span {
  background: linear-gradient(90deg, var(--lime), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ax-hero__lead { margin: 0 0 22px; max-width: 42ch; color: #cfcfcf; font-size: 17px; line-height: 1.45; }
.ax-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ax-hero__img { width: 100%; display: block; border-radius: 10px; border: 1px solid var(--line); }

.ax-pagehero {
  padding: 48px 0 8px;
  border-bottom: 0;
  animation: ax-rise .55s ease-out both;
}

.ax-sec { padding: 56px 0; border-bottom: 1px solid var(--line); }
.ax-sec__head { text-align: center; margin-bottom: 28px; }
.ax-sec__head img { width: 72px; height: auto; margin-bottom: 10px; }
.ax-sec__head h2 {
  margin: 0; font-family: Oswald, sans-serif; font-size: clamp(26px, 3.5vw, 34px);
  text-transform: uppercase; letter-spacing: .03em;
}
.ax-sec__head h2 em,
.ax-partner h2 em { font-style: normal; color: var(--lime); }
.ax-sec__sub { margin: 10px auto 0; max-width: 48ch; color: var(--mute); font-size: 15px; }

.ax-feats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ax-feats--3 { grid-template-columns: repeat(3, 1fr); margin: 18px 0 22px; }
.ax-feat {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 14px 16px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.ax-feat:hover {
  border-color: rgba(184,255,0,.45);
  transform: translateY(-2px);
}
.ax-feat strong { display: block; margin-bottom: 8px; color: var(--lime); font-size: 15px; }
.ax-feat span { display: block; color: var(--mute); font-size: 13px; line-height: 1.4; }

.ax-icons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ax-icon-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 12px 16px;
  text-align: center;
}
.ax-icon-well {
  width: 74px; height: 74px; margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a;
  border: 2px solid rgba(184,255,0,.55);
  box-shadow: inset 0 0 0 6px rgba(184,255,0,.06);
}
.ax-icon-well img {
  width: 42px; height: 42px; object-fit: contain; display: block;
  filter: none;
}
.ax-icon-card strong { display: block; margin-bottom: 8px; color: var(--lime); font-size: 15px; }
.ax-icon-card span { display: block; color: var(--mute); font-size: 13px; line-height: 1.4; }

.ax-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.ax-split.reverse { grid-template-columns: .95fr 1.05fr; }
.ax-split.reverse .ax-copy { order: 2; }
.ax-split.reverse .ax-media { order: 1; }
.ax-copy h3 { margin: 0 0 10px; font-family: Oswald, sans-serif; font-size: 28px; text-transform: uppercase; }
.ax-copy p { margin: 0 0 16px; color: var(--mute); font-size: 16px; line-height: 1.5; }
.ax-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.ax-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: #ddd;
  font-size: 15px;
  border-bottom: 1px solid #222;
}
.ax-list li:last-child { border-bottom: 0; }
.ax-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 8px; height: 8px;
  border-radius: 1px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(184,255,0,.45);
}
.ax-list b { color: var(--lime); font-weight: 700; }

.ax-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 20px; }
.ax-mini__item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 12px; text-align: center;
}
.ax-mini__item .ax-icon-well { width: 64px; height: 64px; margin-bottom: 10px; }
.ax-mini__item .ax-icon-well img { width: 36px; height: 36px; }
.ax-mini__item strong { display: block; color: var(--lime); font-size: 14px; margin-bottom: 4px; }
.ax-mini__item span { color: var(--mute); font-size: 13px; }
.ax-media img {
  width: 100%; display: block; border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.ax-partner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
  text-align: left;
  max-width: none;
  margin: 0;
}
.ax-partner__media img {
  width: 100%; display: block; border-radius: 4px; border: 1px solid var(--line);
}
.ax-partner__copy h2 {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.ax-partner__copy p { color: var(--mute); margin: 0 0 18px; font-size: 16px; line-height: 1.5; max-width: 42ch; }

@media (max-width: 980px) {
  .ax-icons, .ax-feats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .ax-hero--bleed { min-height: 560px; }
  .ax-hero__inner { padding: 56px 0 40px; margin-left: auto; }
  .ax-hero__grid, .ax-split, .ax-split.reverse, .ax-mini, .ax-partner { grid-template-columns: 1fr; }
  .ax-split.reverse .ax-copy, .ax-split.reverse .ax-media { order: initial; }
  .ax-icons, .ax-feats, .ax-feats--3 { grid-template-columns: repeat(2, 1fr); }
  .new_bg_2 .row > [class*="col-"] { justify-content: center; }
  .new_bg_2_href { justify-content: center; width: 100%; }
}
@media (max-width: 520px) {
  .ax-icons, .ax-feats, .ax-feats--3 { grid-template-columns: 1fr; }
}

/* ---- Auth forms ---- */
.ax-auth {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 64px;
}
.ax-auth__card {
  width: 100%;
  max-width: 420px;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 28px 24px 24px;
  text-align: center;
}
.ax-auth__card h1 {
  margin: 0 0 8px;
  font-family: Oswald, sans-serif;
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.ax-auth__card h1 span { color: var(--lime); }
.ax-auth__hint {
  margin: 0 0 18px;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.4;
}
.ax-auth__error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,30,60,.12);
  border: 1px solid rgba(255,30,60,.35);
  color: #ff8ea0;
  font-size: 14px;
}
.ax-auth__ok {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(184,255,0,.1);
  border: 1px solid rgba(184,255,0,.35);
  color: var(--lime);
  font-size: 14px;
}
.ax-auth__mentor {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 15px;
}
.ax-auth__mentor b {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  color: var(--lime);
}
.ax-field {
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0c0c0c;
  color: #fff;
  font-size: 15px;
  outline: none;
}
.ax-field:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(184,255,0,.15);
}
.ax-pass {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
}
.ax-pass .ax-field { margin: 0; padding-right: 44px; }
.ax-pass .eye-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ax-pass .eye-icon img { width: 100%; height: auto; }
.ax-captcha {
  display: flex;
  gap: 8px;
  margin: 0 0 12px;
}
.ax-captcha .captcha2 {
  flex: 0 0 110px;
  background: #1a1a1a !important;
  border: 1px solid #3a3a3a !important;
  color: var(--lime) !important;
  border-radius: 8px !important;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  letter-spacing: .12em;
}
.ax-captcha .captcha1,
.ax-captcha input[name="captcha"] {
  flex: 1;
  margin: 0 !important;
  width: auto !important;
}
.ax-submit {
  width: 100%;
  margin: 6px 0 12px !important;
}
.ax-auth__links a {
  color: var(--mute);
  text-decoration: none;
  border-bottom: 1px solid #444;
  font-size: 14px;
}
.ax-auth__links a:hover { color: var(--lime); border-color: var(--lime); }
.ax-rules {
  text-align: left;
  margin: 10px 0 12px;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.45;
}
.ax-rules a { color: var(--lime); text-decoration: none; }
.ax-rules label { display: flex; gap: 8px; align-items: flex-start; margin: 4px 0; }

/* richer footer */
.ax-foot {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 40px 0 24px !important;
}
.ax-foot__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.ax-foot__brand img { width: 140px; margin-bottom: 12px; }
.ax-foot__brand p { margin: 0; color: var(--mute); font-size: 14px; line-height: 1.5; max-width: 28ch; }
.ax-foot h4 {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.ax-foot__grid a, .ax-foot__grid p {
  display: block;
  margin: 0 0 8px;
  color: var(--mute);
  text-decoration: none;
  font-size: 14px;
}
.ax-foot__grid a:hover { color: var(--lime); }
.ax-foot__pay img { height: 28px; width: auto; margin: 0 8px 8px 0; vertical-align: middle; opacity: .9; }
@media (max-width: 900px) {
  .ax-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ax-foot__grid { grid-template-columns: 1fr; }
}
