:root {
  color-scheme: light;
  --bg: #f6f8ff;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --surface-tint: #f8f5ff;
  --navy: #07122f;
  --navy-2: #101a3f;
  --ink: #111827;
  --text: #172033;
  --muted: #667085;
  --muted-strong: #344054;
  --ice: #f8fbff;
  --line: rgba(17, 24, 39, 0.12);
  --line-strong: rgba(124, 58, 237, 0.32);
  --violet: #7c3aed;
  --blue: #2563eb;
  --cyan: #0891b2;
  --pink: #f43f7f;
  --amber: #f59e0b;
  --red: #e11d48;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 1.25rem);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 58, 237, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(244, 63, 127, 0.12), transparent 28rem),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 44%, #f4f7ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(black, transparent 72%);
}

body.nav-open,
body.broker-reminder-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: #ffffff;
  background: var(--violet);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: #ffffff;
  background: var(--violet);
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 1.25rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 18, 47, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 18, 47, 0.97);
  box-shadow: 0 16px 42px rgba(7, 18, 47, 0.22);
}

.nav {
  width: min(100% - 2rem, var(--container));
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.brand,
.footer-brand,
.thank-you-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  max-width: 44vw;
  min-height: 54px;
}

.brand-logo,
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(6, 182, 212, 0.22));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.54rem 0.72rem;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 780;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 0.45rem;
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--blue) 45%, var(--pink));
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.26);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  position: relative;
  padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(3.4rem, 7vw, 6.6rem) 0 clamp(4rem, 8vw, 7rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 24%, rgba(244, 63, 127, 0.34), transparent 22rem),
    radial-gradient(circle at 74% 20%, rgba(6, 182, 212, 0.28), transparent 24rem),
    radial-gradient(circle at 56% 86%, rgba(245, 158, 11, 0.18), transparent 24rem),
    linear-gradient(135deg, #07122f 0%, #151b4d 46%, #391766 100%);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(black, transparent 78%);
}

.scanline,
.pulse-node {
  position: absolute;
  opacity: 0;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-community .eyebrow,
.section-roboforex .eyebrow,
.section-risk .eyebrow,
.broker-reminder .eyebrow {
  color: #ffd166;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

.hero h1,
.section-community h2,
.section-roboforex h2,
.section-risk h2,
.broker-reminder h2 {
  color: #ffffff;
}

h1 {
  max-width: 11.4ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0.95rem;
  font-size: clamp(2.15rem, 4.6vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.48rem);
  line-height: 1.12;
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 1.5rem;
  color: rgba(248, 251, 255, 0.86);
  font-size: clamp(1.06rem, 1.7vw, 1.26rem);
}

.hero-actions,
.partner-actions,
.broker-reminder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1.08rem;
  color: var(--text);
  background: #ffffff;
  font-weight: 880;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--blue) 48%, var(--pink));
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.28);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.section-explore .button-secondary,
.section-contact .button-secondary,
.thank-you-card .button-secondary {
  color: var(--text);
  border-color: rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.cta-risk-note {
  max-width: 650px;
  margin: 1.1rem 0 0;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.9rem;
}

.hero-dashboard {
  min-width: 0;
}

.dashboard-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.6vw, 1.55rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 36px 36px;
  opacity: 0.72;
}

.dashboard-shell::after,
.explore-card::after,
.insight-card::after,
.research-card::after,
.partner-access-card::after,
form::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(125deg, rgba(124, 58, 237, 0.7), transparent 28%, rgba(6, 182, 212, 0.54), transparent 68%, rgba(244, 63, 127, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.42;
}

.dashboard-shell > *,
.explore-card > *,
.insight-card > *,
.research-card > *,
.community-panel > *,
.partner-access-card > *,
.risk-panel > *,
.risk-control-card > *,
form > *,
.thank-you-card > * {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 0.8rem;
}

.dashboard-topline span {
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: uppercase;
}

.dashboard-topline strong {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-logo-strip {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  margin-top: 1rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.22), transparent 56%),
    rgba(5, 10, 26, 0.78);
}

.dashboard-logo-strip img {
  position: relative;
  width: min(86%, 440px);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(6, 182, 212, 0.28));
}

.dashboard-chart {
  width: 100%;
  height: auto;
  margin: 1rem 0 0;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.candles path {
  fill: rgba(124, 58, 237, 0.16);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.24));
}

.candle-up {
  stroke: #8b5cf6;
}

.candle-down {
  fill: rgba(244, 63, 127, 0.14) !important;
  stroke: var(--pink);
}

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

.chart-line {
  fill: none;
  stroke: url("#chartLine");
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  border-block: 1px solid rgba(17, 24, 39, 0.09);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.82rem 0;
}

.trust-grid span,
.community-benefit-grid span,
.community-benefit-grid a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: var(--radius);
  padding: 0.74rem 0.8rem;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-grid span {
  justify-content: center;
  min-height: 46px;
  text-align: center;
  font-size: 0.78rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}

.section-heading p:not(.eyebrow),
.section-heading-split > p {
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 1.6rem;
  align-items: end;
}

.section-explore,
.section-systems,
.section-contact {
  background:
    radial-gradient(circle at 8% 16%, rgba(37, 99, 235, 0.08), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(244, 63, 127, 0.06), transparent 24rem),
    #ffffff;
}

.category-tabs,
.hub-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.category-tabs {
  margin-bottom: 1.15rem;
}

.category-tabs a,
.hub-filter {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius);
  padding: 0.52rem 0.82rem;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 840;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.category-tabs a:hover,
.category-tabs a:focus-visible,
.category-tabs a.is-active,
.hub-filter:hover,
.hub-filter:focus-visible,
.hub-filter.is-active {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.34);
  color: var(--violet);
  background: rgba(124, 58, 237, 0.08);
  outline: none;
}

.explore-grid,
.insight-grid,
.system-research-grid,
.risk-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.explore-card,
.insight-card,
.research-card,
.community-panel,
.partner-access-card,
.risk-panel,
.risk-control-card,
form,
.thank-you-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.explore-card::before,
.insight-card::before,
.research-card::before,
.community-panel::before,
.partner-access-card::before,
.risk-panel::before,
.risk-control-card::before,
form::before,
.thank-you-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(6, 182, 212, 0.06), transparent 58%);
  opacity: 0.95;
}

.explore-card,
.research-card,
.risk-control-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.explore-card:hover,
.explore-card:focus-visible,
.research-card:hover,
.risk-control-card:hover,
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.18);
  outline: none;
}

.explore-card-accent {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #1d2671, #7c3aed 52%, #f43f7f);
}

.explore-card strong {
  margin: 0.86rem 0 0.42rem;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.1;
}

.explore-card-accent strong,
.explore-card-accent p,
.explore-card-accent .card-link {
  color: #ffffff;
}

.explore-card p,
.research-card p,
.risk-control-card p {
  margin-bottom: 0;
  color: var(--muted-strong);
}

.card-link {
  margin-top: 1rem;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 880;
}

.explore-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 86px;
  height: 62px;
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}

.explore-card:hover .explore-icon,
.explore-card:focus-visible .explore-icon {
  opacity: 1;
  transform: translateY(-4px);
}

.explore-icon::before,
.explore-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(124, 58, 237, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(124, 58, 237, 0.5) 14% 17%, transparent 17% 100%) 0 82% / 100% 80% no-repeat,
    linear-gradient(90deg, transparent 0 34%, rgba(6, 182, 212, 0.46) 34% 37%, transparent 37% 100%) 0 54% / 100% 80% no-repeat,
    linear-gradient(90deg, transparent 0 58%, rgba(244, 63, 127, 0.42) 58% 61%, transparent 61% 100%) 0 70% / 100% 80% no-repeat;
}

.explore-icon::after {
  inset: 14px 10px;
  border-color: rgba(6, 182, 212, 0.26);
  transform: translate(-8px, 8px);
}

.section-insights,
.section-content-hub {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, 0.09), transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(6, 182, 212, 0.08), transparent 26rem),
    var(--surface-soft);
}

.hub-filter-bar {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  padding: 0.65rem;
  margin: -0.35rem 0 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.hub-filter-link {
  border-color: rgba(244, 63, 127, 0.24);
  color: var(--pink);
  background: rgba(244, 63, 127, 0.08);
}

.insight-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.insight-card {
  grid-column: span 2;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 430px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.insight-card.is-filtered-out {
  display: none;
}

.insight-art {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 34px 34px,
    #172554;
}

.insight-art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at 74% 44%, rgba(255, 255, 255, 0.16), transparent 27%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
}

.insight-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.art-grid-line,
.art-panel,
.art-line,
.art-orbit,
.art-bot,
.art-cloud,
.art-server,
.art-hub,
.art-clock,
.art-clock-hand,
.art-candle-gold,
.art-candle-red,
.art-coin,
.art-coin-mark,
.art-wave,
.art-shield,
.art-gauge,
.art-gauge-tick {
  fill: none;
  vector-effect: non-scaling-stroke;
}

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

.art-panel,
.art-server,
.art-hub,
.art-clock,
.art-coin,
.art-shield {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2;
}

.art-line,
.art-orbit,
.art-wave,
.art-gauge,
.art-clock-hand,
.art-coin-mark,
.art-gauge-tick {
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.22));
}

.art-node {
  fill: #ffffff;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.42));
}

.art-bot,
.art-cloud,
.art-candle-gold,
.art-candle-red {
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-bot,
.art-cloud {
  stroke: rgba(255, 255, 255, 0.82);
}

.art-server {
  stroke: rgba(255, 255, 255, 0.68);
}

.art-cloud {
  fill: rgba(255, 255, 255, 0.08);
}

.copy-flow {
  stroke-dasharray: 16 12;
}

.art-clock,
.art-candle-gold {
  stroke: #ffd166;
  filter: drop-shadow(0 0 10px rgba(255, 209, 102, 0.24));
}

.art-candle-gold {
  fill: rgba(255, 209, 102, 0.16);
}

.art-candle-red {
  fill: rgba(244, 63, 127, 0.14);
  stroke: var(--pink);
}

.art-wave,
.art-wave-two {
  stroke-dasharray: 280;
}

.art-wave-two {
  opacity: 0.62;
}

.art-shield {
  fill: rgba(255, 255, 255, 0.08);
}

.art-gauge {
  stroke: rgba(255, 255, 255, 0.64);
}

.art-gauge-tick {
  stroke: #ffd166;
}

.art-terminal {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.64);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.art-ea {
  background: linear-gradient(135deg, #312e81, #2563eb);
}

.art-vps {
  background: linear-gradient(135deg, #0f172a, #0891b2);
}

.art-copy {
  background: linear-gradient(135deg, #581c87, #7c3aed);
}

.art-gold {
  background: linear-gradient(135deg, #78350f, #f59e0b);
}

.art-proof {
  background: linear-gradient(135deg, #1e3a8a, #06b6d4);
}

.art-risk {
  background: linear-gradient(135deg, #881337, #f43f7f);
}

.art-broker {
  background: linear-gradient(135deg, #172554, #7c3aed);
}

.art-community {
  background: linear-gradient(135deg, #111827, #2563eb 46%, #f43f7f);
}

.insight-body {
  display: grid;
  align-content: start;
  padding: 1.1rem;
}

.insight-body a {
  text-decoration-color: rgba(124, 58, 237, 0.32);
  text-underline-offset: 0.18em;
}

.insight-body h3 a,
.insight-body p a,
.article-tag-link {
  color: inherit;
  text-decoration: underline;
}

.article-tag,
.research-card-head span,
.feature-kicker,
.article-tag-link {
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0.55rem 0 0.65rem;
}

.insight-card p {
  color: var(--muted-strong);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.09);
  padding-top: 0.9rem;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.article-meta a {
  color: var(--violet);
}

.system-research-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.research-card {
  grid-column: span 2;
  min-height: 390px;
  align-content: space-between;
}

.research-card-feature,
.proof-card {
  grid-column: span 3;
  min-height: 430px;
}

.asia-proof-card {
  grid-column: span 6;
}

.research-card-feature {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(244, 63, 127, 0.055)),
    #ffffff;
}

.proof-card {
  border-color: rgba(124, 58, 237, 0.22);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.06) 44%, rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.backtest-chart {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
}

.backtest-chart img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(16, 24, 40, 0.12);
}

.backtest-chart figcaption {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.research-card-head {
  display: grid;
  gap: 0.55rem;
}

.research-card-head h3 {
  margin-bottom: 0;
}

.research-specs {
  display: grid;
  gap: 0;
  margin: 1.15rem 0 0;
}

.research-specs div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  padding: 0.72rem 0;
}

.research-specs dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: uppercase;
}

.research-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 860;
  text-align: right;
}

.profit-proof-specs div {
  align-items: flex-start;
}

.profit-proof-specs dd {
  max-width: 58%;
}

.proof-note {
  border-left: 2px solid rgba(244, 63, 127, 0.44);
  padding-left: 0.82rem;
  margin: 1rem 0 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.5;
}

.section-community,
.section-roboforex,
.section-risk {
  color: rgba(248, 251, 255, 0.86);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 22%, rgba(244, 63, 127, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(6, 182, 212, 0.18), transparent 26rem),
    linear-gradient(135deg, #07122f, #141b4d 52%, #32134f);
}

.section-community p,
.section-roboforex p,
.section-risk p {
  color: rgba(248, 251, 255, 0.82);
}

.community-suite,
.risk-suite {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.58fr);
  gap: 1rem;
  align-items: stretch;
}

.community-panel,
.risk-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, auto);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(1.35rem, 4vw, 2.1rem);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.community-panel h2,
.risk-panel h2 {
  max-width: 17ch;
}

.community-panel p:not(.eyebrow),
.risk-panel p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(248, 251, 255, 0.82);
  font-size: 1.04rem;
}

.community-panel-actions {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.community-panel-actions span,
.risk-panel-note span {
  max-width: 300px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.community-benefit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.community-benefit-grid span,
.community-benefit-grid a {
  color: rgba(248, 251, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.partner-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header) + 1.4rem);
}

.partner-copy h2,
.contact-copy h2 {
  max-width: 12.5ch;
}

.partner-copy p,
.contact-copy p {
  color: inherit;
}

.partner-copy a,
.partner-benefit-list a,
.partner-disclosure a,
.partner-fine-print a,
.contact-copy a,
.site-footer a,
.thank-you-card a:not(.button) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.18em;
}

.partner-access-card {
  padding: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--text);
  background: #ffffff;
}

.partner-benefit-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  padding: 0.74rem 0.8rem;
  color: var(--muted-strong);
  background: rgba(248, 250, 252, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.partner-actions {
  margin-top: 1.1rem;
}

.partner-actions .button {
  flex: 1 1 190px;
}

.partner-access-card .button-secondary {
  color: var(--violet);
  border-color: rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.08);
}

.partner-code-panel {
  display: grid;
  gap: 0.28rem;
  border: 1px solid rgba(124, 58, 237, 0.24);
  border-radius: var(--radius);
  padding: 0.95rem;
  margin: 1.1rem 0 0;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.09);
}

.partner-code-panel span,
.broker-reminder-code span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ffdnp {
  color: var(--violet);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.partner-code-panel strong {
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1;
}

.partner-code-panel p {
  margin: 0.15rem 0 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.partner-disclosure,
.partner-risk-line {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  padding: 0.86rem 0.9rem;
  margin: 0.9rem 0 0;
  color: var(--muted-strong);
  background: rgba(248, 250, 252, 0.92);
  font-size: 0.86rem;
  font-weight: 740;
}

.partner-risk-line {
  border-color: rgba(225, 29, 72, 0.2);
  color: #991b1b;
  background: rgba(254, 226, 226, 0.72);
}

.partner-fine-print {
  grid-column: 1 / -1;
  max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin: 1.5rem 0 0;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(248, 251, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.5;
}

.broker-reminder[hidden] {
  display: none;
}

.broker-reminder {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.broker-reminder-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(124, 58, 237, 0.26), transparent 34%),
    rgba(7, 18, 47, 0.78);
  backdrop-filter: blur(14px);
}

.broker-reminder-panel {
  position: relative;
  width: min(100%, 620px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 4vw, 1.6rem);
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #07122f, #1d2671 44%, #7c3aed);
  box-shadow: 0 38px 120px rgba(7, 18, 47, 0.44), 0 0 44px rgba(124, 58, 237, 0.22);
}

.broker-reminder-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(black, transparent 86%);
}

.broker-reminder-panel > * {
  position: relative;
  z-index: 1;
}

.broker-reminder-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.broker-reminder-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.broker-reminder-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.broker-reminder-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.broker-reminder h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.05rem, 8vw, 4rem);
  line-height: 0.92;
}

.broker-reminder p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(248, 251, 255, 0.84);
}

.broker-reminder-code {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  align-items: baseline;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.broker-reminder-code strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  line-height: 1;
}

.broker-reminder-code span {
  color: rgba(248, 251, 255, 0.74);
}

.broker-reminder-risk {
  border-left: 2px solid rgba(255, 209, 102, 0.64);
  padding-left: 0.8rem;
  font-size: 0.84rem;
}

.broker-reminder-actions .button {
  flex: 1 1 190px;
}

.risk-panel-note {
  display: grid;
  gap: 0.35rem;
  border-left: 2px solid rgba(255, 209, 102, 0.64);
  padding-left: 1rem;
}

.risk-panel-note strong {
  color: #ffffff;
  font-size: 0.94rem;
}

.risk-control-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.risk-control-card {
  min-height: 250px;
  color: var(--text);
  background: #ffffff;
}

.risk-control-card p {
  color: var(--muted-strong);
}

.risk-control-card::before {
  background:
    linear-gradient(135deg, rgba(244, 63, 127, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(124, 58, 237, 0.06), transparent 58%);
}

.section-contact {
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 58, 237, 0.09), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(6, 182, 212, 0.08), transparent 25rem),
    #ffffff;
}

.contact-console {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.contact-console span {
  display: block;
  border-left: 3px solid var(--violet);
  padding: 0.5rem 0.75rem;
  color: var(--muted-strong);
  background: rgba(124, 58, 237, 0.06);
  font-size: 0.88rem;
  font-weight: 800;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.55rem);
}

.field-full,
.form-submit {
  grid-column: 1 / -1;
}

.field-group {
  display: grid;
  gap: 0.42rem;
}

label {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 840;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: var(--radius);
  padding: 0.84rem 0.88rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124, 58, 237, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 251, 255, 0.84);
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 58, 237, 0.22), transparent 20rem),
    #07122f;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem 1.2rem;
  align-items: center;
  padding: 1.4rem 0;
}

.footer-brand {
  grid-row: span 3;
}

.footer-logo-shell {
  width: 180px;
}

.footer-inner p {
  margin: 0;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.88rem;
}

.footer-disclaimer {
  max-width: 820px;
  border-left: 2px solid rgba(255, 209, 102, 0.6);
  padding-left: 0.78rem;
  color: rgba(248, 251, 255, 0.9);
}

.footer-eligibility {
  color: rgba(248, 251, 255, 0.72);
}

.thank-you-page {
  min-height: 100svh;
  display: grid;
  background:
    radial-gradient(circle at 18% 12%, rgba(124, 58, 237, 0.22), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(244, 63, 127, 0.16), transparent 26rem),
    linear-gradient(135deg, #f8fbff, #eef3ff);
}

.thank-you-main {
  width: min(100% - 2rem, 820px);
  display: grid;
  align-items: center;
  margin: auto;
  padding: 3rem 0;
}

.thank-you-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.thank-you-brand .brand-logo-shell {
  width: 230px;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  padding: 0.4rem;
  background: var(--navy);
}

.thank-you-card h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
}

.thank-you-card p {
  color: var(--muted-strong);
}

.thank-you-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.thank-you-status span,
.small-risk-note {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  padding: 0.72rem 0.78rem;
  color: var(--muted-strong);
  background: rgba(248, 250, 252, 0.92);
  font-size: 0.88rem;
  font-weight: 760;
}

.small-risk-note {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-layout,
  .partner-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  h1 {
    max-width: 12ch;
  }

  .partner-copy,
  .contact-copy {
    position: static;
  }

  .trust-grid,
  .explore-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .system-research-grid,
  .risk-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-card,
  .research-card-feature,
  .proof-card,
  .asia-proof-card {
    grid-column: span 1;
  }

  .community-suite,
  .risk-suite {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 0.75rem;
    max-height: calc(100svh - var(--header) - 1.4rem);
    overflow-y: auto;
    background: rgba(7, 18, 47, 0.98);
    box-shadow: 0 24px 70px rgba(7, 18, 47, 0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a,
  .nav-menu .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .section-heading-split,
  .community-panel,
  .risk-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .risk-panel-note {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
    padding-top: 0.95rem;
    padding-left: 0;
  }

  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-card {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero {
    padding-top: 2.6rem;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.35rem, 10.6vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }

  .hero-actions,
  .partner-actions,
  .broker-reminder-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-grid,
  .explore-grid,
  .insight-grid,
  .system-research-grid,
  .risk-control-grid,
  .community-benefit-grid,
  form,
  .thank-you-status,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .dashboard-logo-strip {
    min-height: 84px;
  }

  .dashboard-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-full,
  .form-submit {
    grid-column: auto;
  }

  .footer-brand {
    grid-row: auto;
  }

  .footer-inner {
    justify-items: start;
  }
}

@media (max-width: 460px) {
  .brand-logo-shell {
    width: 158px;
    max-width: 58vw;
  }

  .dashboard-topline,
  .article-meta,
  .research-specs div {
    align-items: flex-start;
    flex-direction: column;
  }

  .research-specs dd {
    text-align: left;
  }

  .explore-card,
  .research-card,
  .risk-control-card {
    min-height: 230px;
  }

  .explore-icon {
    width: 70px;
    height: 50px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
