:root {
  --bg: #0a0a10;
  --bg-soft: #10101a;
  --panel: #171720;
  --panel-strong: #1b1b27;
  --line: #29293c;
  --line-bright: #5d58f2;
  --text: #f6f4ff;
  --muted: #b7b3c8;
  --muted-dim: #87839a;
  --accent: #665cff;
  --accent-two: #9b77ff;
  --green: #18c66a;
  --red: #ff5368;
  --gold: #ffc93c;
  --shadow: 0 22px 70px rgba(0, 0, 0, .36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 23% 18%, rgba(94, 89, 244, .12), transparent 26rem),
    radial-gradient(circle at 78% 12%, rgba(40, 110, 255, .08), transparent 24rem),
    linear-gradient(180deg, #0b0a12 0%, #0c0d15 48%, #090a10 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(7, 7, 12, .86);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #6259ff 0%, #f249c9 44%, #28e0ff 100%);
  box-shadow: 0 0 20px rgba(102, 92, 255, .44);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav a:hover {
  color: #fff;
}

.lang-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 7px;
  border: 1px solid rgba(102, 92, 255, .28);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.lang-button {
  gap: 8px;
  padding: 0 12px;
  cursor: pointer;
}

.header-cta {
  padding: 0 14px;
  color: #aaa3ff;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.section {
  padding: 92px 0;
}

.hero {
  min-height: 725px;
  padding-top: 116px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  gap: 80px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 590px;
  margin: 0 0 20px;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  margin-top: 30px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.stars {
  color: #6e66ff;
  letter-spacing: 2px;
}

.signup-card {
  border: 1px solid rgba(102, 92, 255, .22);
  border-radius: 10px;
  padding: 28px 28px 30px;
  background: linear-gradient(180deg, rgba(23, 23, 32, .94), rgba(12, 12, 19, .94));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.signup-card h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 18px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, .16);
}

.stats-row div {
  padding: 16px 10px;
  text-align: center;
}

.stats-row div + div {
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.stats-row strong {
  display: block;
  color: var(--accent);
  font-size: 26px;
  line-height: 1.1;
}

.stats-row span {
  color: var(--muted-dim);
  font-size: 12px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 13px;
  background: rgba(11, 11, 18, .62);
}

.lead-form label > span {
  display: block;
  height: 0;
  overflow: hidden;
}

.lead-form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(102, 92, 255, .18);
  border-radius: 9px;
  padding: 0 16px;
  outline: 0;
  background: rgba(255, 255, 255, .03);
  color: #fff;
}

.lead-form input:focus {
  border-color: rgba(102, 92, 255, .72);
  box-shadow: 0 0 0 3px rgba(102, 92, 255, .12);
}

.phone-field {
  position: relative;
  height: 46px;
  border: 1px solid rgba(102, 92, 255, .18);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}

.phone-field input {
  width: 100%;
  height: 44px;
  border: 0 !important;
  border-radius: 0;
  padding: 0 16px 0 94px !important;
  background: transparent;
  font-weight: 700;
  line-height: 44px;
  box-shadow: none !important;
}

.phone-field input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.phone-field .iti {
  display: block;
  width: 100%;
  height: 44px;
}

.lead-form .phone-field input:focus {
  border: 0 !important;
  box-shadow: none !important;
}

.phone-field .iti__flag-container {
  top: 0;
  bottom: 0;
  left: 0;
  height: 44px;
  padding: 0;
  z-index: 2;
}

.phone-field .iti__selected-flag {
  height: 44px;
  background: rgba(255, 255, 255, .04);
  border-right: 1px solid rgba(255, 255, 255, .06);
  padding: 0 10px;
}

.phone-field .iti__selected-dial-code,
.phone-field .iti--separate-dial-code .iti__selected-dial-code {
  color: #fff !important;
}

.phone-field input.err {
  box-shadow: inset 0 0 0 1px rgba(255, 83, 104, .9) !important;
}

.phone-field input.valid {
  box-shadow: inset 0 0 0 1px rgba(24, 198, 106, .75) !important;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(102, 92, 255, .28);
}

.primary-button:hover,
.secondary-button:hover {
  filter: brightness(1.08);
}

.primary-button.small {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  font-size: 13px;
}

.form-note {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  text-align: center;
}

.split-section,
.testimonials-grid {
  background: rgba(255, 255, 255, .015);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 90px;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-two));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 14px;
  color: #f5f3ff;
  font-size: 16px;
  line-height: 1.45;
}

p {
  color: var(--muted);
}

.content-block > p,
.narrow-heading p {
  max-width: 670px;
  margin: 0 0 30px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.feature-list article {
  padding-left: 20px;
  border-left: 3px solid var(--line-bright);
}

.feature-list p {
  margin: 0;
  font-size: 14px;
}

.dashboard-card {
  padding: 28px 26px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.dashboard-head,
.signal-row,
.trade-alert {
  display: flex;
  align-items: center;
}

.dashboard-head {
  gap: 8px;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.profit-badge {
  margin-left: auto;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(24, 198, 106, .13);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.signal-row {
  gap: 10px;
  margin: 34px 0 8px 54px;
  font-size: 12px;
}

.up,
.down {
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 800;
}

.up {
  background: rgba(24, 198, 106, .12);
  color: var(--green);
}

.down {
  background: rgba(255, 83, 104, .12);
  color: var(--red);
}

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

.grid-line {
  stroke: rgba(255, 255, 255, .07);
  stroke-width: 1;
}

.area {
  fill: url(#chartFill);
}

.line {
  fill: none;
  stroke: #7068ff;
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(112, 104, 255, .8));
}

.trade-alert {
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 83, 104, .66);
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
}

.trade-alert span {
  color: var(--red);
  font-weight: 900;
}

.trade-alert small {
  margin-left: auto;
}

.narrow-heading {
  max-width: 860px;
  text-align: center;
}

.narrow-heading p {
  margin-right: auto;
  margin-left: auto;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  width: min(100% - 32px, 620px);
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.review-card,
.quote-card,
.security-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: inset 0 3px 0 var(--line-bright);
}

.info-card {
  padding: 34px 22px 26px;
}

.info-card p,
.info-card li,
.review-card p,
.quote-card p,
.security-card p {
  color: var(--muted);
  font-size: 14px;
}

.info-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-card a {
  margin-top: auto;
  color: #8f86ff;
  font-weight: 800;
}

.card-icon,
.security-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: #fff;
  font-weight: 900;
}

.testimonials-featured {
  padding-top: 110px;
}

.mid-signup-section {
  padding-top: 18px;
  padding-bottom: 72px;
}

.mid-signup-wrap {
  display: flex;
  justify-content: center;
}

.mid-signup-wrap .signup-card {
  width: min(100%, 420px);
}

.review-card {
  min-height: 390px;
  padding: 22px;
}

.verified {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(24, 198, 106, .13);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.person span {
  display: block;
  color: #817aff;
  font-size: 12px;
}

.avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 50% 35%, #ffd2bd 0 17%, transparent 18%),
    radial-gradient(circle at 50% 70%, #6956ff 0 27%, transparent 28%),
    linear-gradient(135deg, #2f3144, #12121a);
}

.avatar-two,
.avatar-four,
.avatar-six,
.avatar-eight {
  background:
    radial-gradient(circle at 50% 35%, #ffd6c4 0 17%, transparent 18%),
    radial-gradient(circle at 50% 70%, #d25a87 0 27%, transparent 28%),
    linear-gradient(135deg, #2f3144, #12121a);
}

.avatar-five,
.avatar-seven {
  background:
    radial-gradient(circle at 50% 35%, #d9a078 0 17%, transparent 18%),
    radial-gradient(circle at 50% 70%, #35aa7a 0 27%, transparent 28%),
    linear-gradient(135deg, #2f3144, #12121a);
}

.gold {
  color: var(--gold);
  letter-spacing: 1px;
}

.review-card p {
  padding-left: 13px;
  border-left: 2px solid var(--line-bright);
}

.quote-card {
  padding: 24px 20px 22px;
}

.quote-card p {
  margin-top: 0;
}

.compact {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.profit {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.profit strong {
  color: var(--green);
}

.security-card {
  min-height: 226px;
  padding: 26px 22px;
  box-shadow: none;
}

.security-card p {
  margin: 0 0 14px;
}

.security-card em {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(102, 92, 255, .14);
  color: #8f86ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance {
  margin-top: 54px;
  text-align: center;
}

.compliance h2 {
  margin-bottom: 28px;
  font-size: 18px;
}

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

.compliance-grid div {
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 23, 32, .78);
  text-align: left;
}

.compliance-grid strong,
.compliance-grid span {
  display: block;
}

.compliance-grid span {
  color: var(--muted-dim);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #08080d;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 42px;
    right: 16px;
    display: none;
    width: min(320px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #11111a;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    justify-content: center;
    min-height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 0;
    padding-top: 96px;
  }

  .hero-grid,
  .split-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid {
    gap: 42px;
  }

  .signup-card,
  .dashboard-card {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .rating-pill {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 14px;
    white-space: normal;
  }

  .signup-card {
    padding: 18px;
  }

  .stats-row,
  .card-grid.two,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .stats-row div + div {
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-left: 0;
  }

  .signal-row {
    margin-left: 0;
    flex-wrap: wrap;
  }

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

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .lead-form {
    padding: 12px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    padding: 0 14px;
    font-size: 13px;
  }
}
