:root {
  --navy: #071326;
  --navy-2: #0d1f3a;
  --navy-3: #132b4b;
  --red: #e30613;
  --red-2: #ff2f3f;
  --red-dark: #ad0010;
  --gold: #d2a54a;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --ink: #111827;
  --muted: #667085;
  --line: #e3e8f0;
  --green: #23c982;
  --shadow: 0 24px 70px rgba(7, 19, 38, .14);
  --display: "Sora", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.risk-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  text-align: center;
  padding: 9px 18px;
}

.risk-strip p {
  margin: 0;
}

.site-header {
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(2, 6, 14, .38), rgba(2, 6, 14, .08));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, top .25s ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(227, 232, 240, .95);
  box-shadow: 0 16px 42px rgba(7, 19, 38, .12);
}

.nav-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 214px;
  flex: 0 0 auto;
}

.brand img {
  height: 42px;
  object-fit: contain;
  transition: filter .25s ease;
}

.site-header.scrolled .brand img {
  content: url("elunix-final-logo-files-only/svg/white-theme/elunix-logo-navy-transparent.svg");
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.has-submenu > a::after {
  content: "⌄";
  margin-left: 6px;
  font-size: 11px;
  opacity: .7;
}

.submenu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  min-width: 920px;
  padding: 0;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(227, 232, 240, .95);
  box-shadow: 0 32px 90px rgba(7, 19, 38, .22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  overflow: hidden;
  color: var(--ink);
  max-width: calc(100vw - 48px);
}

.submenu a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  color: #344054;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.submenu a:hover {
  color: var(--red);
  background: rgba(227, 6, 19, .08);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header.scrolled .submenu {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 24px 70px rgba(7, 19, 38, .14);
}

.site-header.scrolled .submenu a {
  color: #344054;
}

.site-header.scrolled .submenu a:hover {
  color: var(--red);
  background: rgba(227, 6, 19, .08);
}

.mega-menu {
  display: grid;
  grid-template-columns: 340px 1fr;
}

.mega-intro {
  padding: 34px 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 6, 19, .24), transparent 34%),
    linear-gradient(135deg, #071326, #111827);
  color: #fff;
}

.mega-intro span {
  display: inline-flex;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mega-intro h3 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.mega-intro p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.65;
  font-size: 14px;
}

.submenu .mega-cta {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(227, 6, 19, .24);
}

.submenu .mega-cta:hover {
  color: #fff;
  background: var(--red-dark);
}

.mega-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 24px;
  padding: 32px;
  background: #fff;
}

.mega-group h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-group a {
  position: relative;
  padding-left: 34px;
}

.mega-group a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .75);
  transform: translateY(-50%);
}

.site-header.scrolled .nav-links {
  color: #23324a;
}

.nav-links a {
  transition: color .2s ease;
}

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

.nav-links a.active {
  color: #fff;
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.ghost-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .14);
}

.site-header.scrolled .ghost-btn {
  color: var(--navy);
  border-color: rgba(16, 24, 40, .14);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .06);
}

.site-header.scrolled .ghost-btn:hover {
  color: var(--red);
  border-color: rgba(227, 6, 19, .22);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 34px rgba(227, 6, 19, .26);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.primary-btn.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(227, 6, 19, .34);
}

.secondary-btn {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.secondary-btn.inverted {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 12%, rgba(227, 6, 19, .18), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f8faff 45%, #eef3fb 100%);
  padding: 96px 0 86px;
}

.ic-hero {
  padding: 0;
  background: #071326;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 19, 38, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 38, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  top: 40px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .14);
  filter: blur(30px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .88fr);
  align-items: center;
  gap: 58px;
}

.ic-hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
}

.ic-hero-stage {
  position: relative;
  min-height: clamp(560px, 36.5vw, 720px);
  overflow: hidden;
}

.ic-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 104px max(36px, calc((100vw - 1180px) / 2)) 118px;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, .96) 0%, rgba(7, 19, 38, .86) 42%, rgba(7, 19, 38, .46) 70%, rgba(7, 19, 38, .22) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

.ic-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .42;
}

.ic-hero-slide::after {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -14vw;
  top: -12vw;
  border-radius: 999px;
  background: rgba(227, 6, 19, .34);
  filter: blur(70px);
  opacity: .7;
}

.ic-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ic-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 18px 0;
  transform: translateY(28px);
  opacity: 0;
  transition: opacity .85s ease .12s, transform .85s ease .12s;
}

.ic-hero-slide.active .ic-hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.ic-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: .96;
  letter-spacing: -.052em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .34);
}

.ic-hero-copy p {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.62;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .32);
}

.ic-hero-copy .eyebrow {
  color: #fff;
  background: rgba(227, 6, 19, .92);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 9px 13px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .25);
}

.ic-hero-copy .secondary-btn {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(14px);
}

.ic-hero-copy .secondary-btn:hover {
  background: rgba(255, 255, 255, .18);
}

.ic-visual {
  transform: translateX(64px) scale(.96);
  opacity: 0;
  transition: opacity .9s ease .18s, transform .9s ease .18s;
}

.ic-hero-slide.active .ic-visual {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.ic-visual .trading-card {
  min-height: 560px;
}

.ic-device {
  min-height: 560px;
  border-radius: 42px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(145deg, var(--navy), #050a14);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .14);
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
}


.spreads-visual .ic-device,
.shine-visual .ic-device {
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, .2), transparent 28%),
    linear-gradient(145deg, var(--red), var(--red-dark));
}


.rise-visual .ic-device {
  background:
    radial-gradient(circle at 78% 8%, rgba(227, 6, 19, .35), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(210, 165, 74, .24), transparent 28%),
    linear-gradient(145deg, #071326, #0f213d);
}

.precision-visual .ic-device {
  background:
    radial-gradient(circle at 78% 8%, rgba(35, 201, 130, .2), transparent 26%),
    linear-gradient(145deg, #08101f, #10233f);
}

.ic-device::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.ic-device strong,
.ic-device span,
.ic-device em {
  position: relative;
  z-index: 2;
}

.ic-device strong {
  font-family: var(--display);
  font-size: clamp(86px, 11vw, 160px);
  line-height: .85;
  letter-spacing: -.08em;
}

.ic-device span {
  margin-top: 20px;
  font-size: clamp(30px, 4vw, 56px);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.05em;
}

.ic-device em {
  margin-top: 18px;
  width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
}

.ic-device i {
  position: absolute;
  display: block;
  border-radius: 20px;
  background: rgba(255, 255, 255, .18);
}

.ic-device i:nth-of-type(1) {
  width: 78%;
  height: 20px;
  left: 12%;
  top: 31%;
  transform: rotate(-17deg);
  background: linear-gradient(90deg, rgba(255,255,255,.1), var(--gold), rgba(35,201,130,.8));
}

.rise-visual .ic-device i:nth-of-type(1) {
  width: 320px;
  height: 320px;
  left: auto;
  right: -80px;
  top: 42px;
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle, rgba(227, 6, 19, .38), rgba(255, 255, 255, .06));
}

.rise-visual .ic-device i:nth-of-type(2) {
  width: 72%;
  height: 54px;
  left: 14%;
  bottom: 28%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}

.rise-visual .ic-device i:nth-of-type(3) {
  width: 58%;
  height: 54px;
  left: 14%;
  bottom: 16%;
  border-radius: 999px;
  background: rgba(227, 6, 19, .42);
}

.precision-visual .ic-device i:nth-of-type(1) {
  width: 82%;
  height: 24px;
  left: 9%;
  top: 52%;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.precision-visual .ic-device i:nth-of-type(2) {
  width: 250px;
  height: 96px;
  right: 14%;
  bottom: 18%;
  border-radius: 999px 999px 26px 26px;
  background: rgba(255, 255, 255, .16);
}

.precision-visual .ic-device i:nth-of-type(3) {
  width: 92px;
  height: 92px;
  right: 43%;
  bottom: 10%;
  border-radius: 50%;
  background: rgba(227, 6, 19, .75);
}

.shine-visual .ic-device i:nth-of-type(1) {
  width: 260px;
  height: 260px;
  right: -48px;
  top: 38px;
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .26), rgba(255, 255, 255, .04));
}

.shine-visual .ic-device i:nth-of-type(2) {
  width: 66px;
  height: 150px;
  left: 18%;
  bottom: 18%;
  background: rgba(255, 255, 255, .24);
}

.shine-visual .ic-device i:nth-of-type(3) {
  width: 66px;
  height: 210px;
  left: 36%;
  bottom: 18%;
  background: rgba(35, 201, 130, .7);
}

.ic-device i:nth-of-type(2) {
  width: 58px;
  height: 170px;
  right: 28%;
  bottom: 18%;
  background: rgba(35, 201, 130, .78);
}

.ic-device i:nth-of-type(3) {
  width: 58px;
  height: 118px;
  right: 12%;
  bottom: 18%;
  background: rgba(255, 255, 255, .28);
}

.ic-device i:nth-of-type(4) {
  width: 210px;
  height: 210px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.ic-hero-progress {
  position: absolute;
  left: max(36px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.ic-hero-progress span {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  overflow: hidden;
  cursor: pointer;
}

.ic-hero-progress span::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 5.4s linear;
}

.ic-hero-progress span.active::after {
  transform: scaleX(1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section h2,
.cta h2 {
  font-family: var(--display);
  letter-spacing: -.055em;
  color: var(--navy);
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .94;
  max-width: 760px;
}

.hero.ic-hero .ic-hero-copy h1 {
  color: #fff;
  max-width: 680px;
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: .96;
  letter-spacing: -.052em;
  text-shadow: 0 20px 54px rgba(0, 0, 0, .45);
}

.hero.ic-hero .ic-hero-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, .84);
}

.hero-copy p {
  max-width: 630px;
  margin: 24px 0 0;
  color: #4b5870;
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #344054;
}

.home-banner-shell {
  position: relative;
  z-index: 2;
  margin-top: 58px;
  overflow: hidden;
  border-radius: 34px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.home-banner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: homeBannerMove 46s linear infinite;
}

.home-banner-shell:hover .home-banner-track {
  animation-play-state: paused;
}

.home-banner-slide {
  width: min(820px, calc(100vw - 64px));
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  padding: 34px;
  color: #fff;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, var(--navy), #050b15 72%);
  box-shadow: 0 24px 70px rgba(7, 19, 38, .2);
  border: 1px solid rgba(255, 255, 255, .14);
}

.home-banner-slide.red {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, .2), transparent 28%),
    linear-gradient(135deg, var(--red), var(--red-dark) 74%);
}

.home-banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(120deg, transparent 10%, #000 88%);
}

.home-banner-content,
.home-banner-art {
  position: relative;
  z-index: 1;
}

.home-banner-content span {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-banner-content h2 {
  margin: 18px 0 14px;
  max-width: 490px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.055em;
}

.home-banner-content p {
  max-width: 480px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.68;
}

.home-banner-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.home-banner-art {
  min-height: 235px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .16), transparent 34%),
    rgba(255, 255, 255, .08);
  overflow: hidden;
}

.home-banner-art strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 92px);
  letter-spacing: -.08em;
  color: #fff;
}

.home-banner-art small {
  position: relative;
  z-index: 2;
  margin-top: -46px;
  color: rgba(255, 255, 255, .72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.home-banner-art i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.home-banner-art i:nth-of-type(1) {
  width: 78%;
  height: 18px;
  left: 12%;
  top: 30%;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), var(--gold), rgba(255, 255, 255, .24));
}

.home-banner-art i:nth-of-type(2) {
  width: 52px;
  height: 142px;
  left: 18%;
  bottom: 15%;
  border-radius: 16px;
  background: rgba(35, 201, 130, .72);
}

.home-banner-art i:nth-of-type(3) {
  width: 52px;
  height: 102px;
  right: 18%;
  bottom: 15%;
  border-radius: 16px;
  background: rgba(255, 255, 255, .28);
}

.home-banner-art i:nth-of-type(4) {
  width: 150px;
  height: 150px;
  right: -48px;
  top: -48px;
  background: rgba(255, 255, 255, .12);
}

.trading-card {
  background: linear-gradient(145deg, var(--navy), #0a1020);
  color: #fff;
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .12);
  position: relative;
}

.trading-card::after {
  content: "";
  position: absolute;
  inset: auto 28px -18px 28px;
  height: 34px;
  background: var(--red);
  filter: blur(32px);
  opacity: .55;
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.terminal-top strong {
  color: #fff;
}

.chart-area {
  height: 260px;
  margin: 26px 0;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 48%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  clip-path: polygon(0 80%, 15% 45%, 28% 62%, 42% 22%, 56% 38%, 72% 15%, 86% 36%, 100% 12%, 100% 100%, 0 100%);
  opacity: .9;
}

.candle {
  position: absolute;
  bottom: 38px;
  width: 18px;
  border-radius: 999px;
  background: var(--red);
}

.c1 { left: 15%; height: 92px; }
.c2 { left: 30%; height: 138px; background: var(--green); }
.c3 { left: 48%; height: 118px; }
.c4 { left: 66%; height: 158px; background: var(--green); }
.c5 { left: 82%; height: 126px; }

.quotes {
  display: grid;
  gap: 12px;
}

.quotes div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
}

.quotes span {
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.quotes em {
  color: var(--green);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.quotes em.down {
  color: var(--red-2);
}

.stats-bar {
  background: var(--navy);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -.04em;
}

.stats-grid span {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

.scroll-banners {
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ticker-track > div {
  display: flex;
  width: max-content;
  animation: tickerMove 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 13px 24px;
  color: rgba(255, 255, 255, .68);
  border-right: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 800;
}

.ticker-track b {
  color: #fff;
}

.ticker-track .ticker-logo {
  min-width: 230px;
  gap: 14px;
  padding-left: 28px;
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .28), rgba(255, 255, 255, .04));
}

.ticker-logo img {
  height: 26px;
  width: auto;
}

.ticker-logo small {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-window {
  padding: 28px 0 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.banner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: bannerMove 42s linear infinite;
}

.banner-window:hover .banner-track,
.ticker-track:hover > div {
  animation-play-state: paused;
}

.scroll-banner-card {
  width: min(560px, calc(100vw - 44px));
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  align-items: stretch;
  border-radius: 32px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .16), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 22px 60px rgba(7, 19, 38, .16);
  border: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}

.scroll-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(120deg, transparent, #000 72%);
}

.scroll-banner-card.markets,
.scroll-banner-card.funding {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.banner-copy,
.banner-visual {
  position: relative;
  z-index: 1;
}

.banner-copy span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 900;
}

.banner-copy h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.banner-copy p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.58;
  margin: 0 0 20px;
}

.banner-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.banner-visual {
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}

.banner-visual i {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
}

.banner-visual i:nth-child(1) {
  width: 72%;
  height: 18px;
  left: 16%;
  top: 24%;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), var(--gold), rgba(255, 255, 255, .18));
}

.banner-visual i:nth-child(2) {
  width: 54px;
  height: 130px;
  left: 24%;
  bottom: 18%;
  background: rgba(35, 201, 130, .72);
}

.banner-visual i:nth-child(3) {
  width: 54px;
  height: 92px;
  right: 22%;
  bottom: 18%;
  background: rgba(255, 255, 255, .28);
}

.scroll-banner-card.platform .banner-visual i:nth-child(1) {
  width: 68%;
  height: 48px;
  top: 18%;
  left: 16%;
  transform: none;
  background: rgba(255, 255, 255, .24);
}

.scroll-banner-card.platform .banner-visual i:nth-child(2) {
  width: 72%;
  height: 96px;
  left: 14%;
  bottom: 18%;
  background: linear-gradient(135deg, rgba(227, 6, 19, .55), rgba(255, 255, 255, .16));
}

.scroll-banner-card.funding .banner-visual i:nth-child(1) {
  width: 96px;
  height: 96px;
  left: 18%;
  top: 22%;
  transform: none;
  border-radius: 50%;
}

.scroll-banner-card.funding .banner-visual i:nth-child(2) {
  width: 64%;
  height: 44px;
  left: 18%;
  bottom: 24%;
  background: rgba(255, 255, 255, .22);
}

@keyframes bannerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes homeBannerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.section {
  padding: 104px 0;
}

.split,
.tools-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.section-copy h2,
.section-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.section-copy p,
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.benefit-stack {
  display: grid;
  gap: 16px;
}

.benefit-stack article,
.market-card,
.account-card,
.tool-list article,
.steps-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .06);
}

.benefit-stack article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
}

.benefit-stack span {
  color: var(--red);
  font-family: var(--display);
  font-weight: 900;
}

.benefit-stack h3,
.market-card h3,
.account-card h3,
.steps-grid h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -.03em;
}

.benefit-stack p,
.market-card p,
.account-card p,
.steps-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.markets {
  background: var(--soft);
}

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

.market-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 28px;
}

.market-filter button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
  cursor: pointer;
}

.market-filter button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.market-card {
  padding: 26px;
  min-height: 218px;
  position: relative;
  overflow: hidden;
}

.market-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  top: -58px;
  background: rgba(227, 6, 19, .1);
  border-radius: 50%;
}

.market-card > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  margin-bottom: 26px;
}

.market-card > span.market-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, var(--navy), #030814);
  box-shadow: 0 16px 34px rgba(7, 19, 38, .18);
  font-size: 24px;
}

.market-card strong {
  display: block;
  margin-top: 20px;
  color: var(--red);
}

.live-price {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.live-price .price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.live-price b {
  color: var(--navy);
  font-size: 13px;
}

.live-price strong {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -.03em;
}

.live-price em {
  font-style: normal;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.live-price em.down {
  color: var(--red);
}

.live-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.platform-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 62%, #21070b 100%);
  color: #fff;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-copy.light h2,
.section-copy.light p {
  color: #fff;
}

.section-copy.light p {
  color: rgba(255, 255, 255, .72);
}

.platform-panel {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  padding: 28px;
}

.platform-panel > img {
  height: 54px;
  margin-bottom: 28px;
}

.platform-showcase {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(227, 6, 19, .22), transparent 30%),
    rgba(255, 255, 255, .07);
}

.platform-showcase .platform-brand {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 3;
  height: 42px;
  margin: 0;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .34));
}

.mt5-visual {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .26);
  background: #050b15;
}

.mt5-visual > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 58% center;
  opacity: .9;
}

.mt5-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 21, .02), rgba(5, 11, 21, .34)),
    linear-gradient(90deg, rgba(5, 11, 21, .18), transparent 48%);
}

.mt5-badge,
.mt5-ticket {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(5, 11, 21, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.mt5-badge {
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  min-width: 172px;
  border-radius: 22px;
  padding: 18px;
}

.mt5-badge strong {
  color: #fff;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.mt5-badge span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mt5-ticket {
  right: 22px;
  top: 28px;
  display: grid;
  gap: 7px;
  min-width: 150px;
  border-radius: 20px;
  padding: 16px;
}

.mt5-ticket b,
.mt5-ticket strong,
.mt5-ticket em {
  display: block;
}

.mt5-ticket b {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.mt5-ticket strong {
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -.035em;
}

.mt5-ticket em {
  color: var(--green);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.device-frame {
  min-height: 360px;
  border-radius: 30px;
  background: #f8fbff;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.device-header,
.device-row,
.device-chart {
  border-radius: 16px;
  background: #dde6f2;
}

.device-header {
  height: 48px;
  margin-bottom: 20px;
}

.device-chart {
  height: 160px;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .28), transparent),
    linear-gradient(rgba(7, 19, 38, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 38, .07) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.device-row {
  height: 44px;
  margin-bottom: 14px;
}

.device-row.short {
  width: 68%;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.platform-tabs button {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.platform-tabs button.active {
  background: var(--red);
  border-color: var(--red);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  color: rgba(255, 255, 255, .82);
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}

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

.account-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.account-card.featured {
  background: var(--navy);
  color: #fff;
  transform: translateY(-14px);
  border-color: var(--navy);
  box-shadow: 0 28px 80px rgba(7, 19, 38, .24);
}

.account-card.featured h3,
.account-card.featured p {
  color: #fff;
}

.tag {
  align-self: flex-start;
  background: rgba(227, 6, 19, .09);
  color: var(--red);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 26px;
}

.featured .tag {
  background: var(--red);
  color: #fff;
}

.account-card h3 {
  font-size: 30px;
}

.account-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.featured ul {
  color: rgba(255, 255, 255, .72);
}

.account-card li::before {
  content: "•";
  color: var(--red);
  margin-right: 9px;
}

.account-card a {
  margin-top: auto;
  font-weight: 900;
  color: var(--red);
}

.account-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.account-metrics span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #f8fafc;
}

.featured .account-metrics span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.account-metrics b,
.account-metrics small {
  display: block;
}

.account-metrics b {
  color: var(--navy);
  font-size: 14px;
}

.featured .account-metrics b {
  color: #fff;
}

.account-metrics small {
  color: var(--muted);
  margin-top: 4px;
}

.featured .account-metrics small {
  color: rgba(255, 255, 255, .62);
}

.tools {
  background: var(--soft);
}


.tool-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tool-list article {
  padding: 24px;
}

.condition-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.condition-card,
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .06);
}

.condition-card span,
.feature-card span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 950;
  margin-bottom: 20px;
}

.condition-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.035em;
}

.condition-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-table-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(227, 6, 19, .09), transparent 28%),
    #fff;
}

.market-board {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 30px;
  background: #071326;
  box-shadow: 0 24px 70px rgba(7, 19, 38, .18);
}

.market-board div {
  display: grid;
  grid-template-columns: 1fr .8fr .9fr .7fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
}

.market-board b,
.market-board strong {
  color: #fff;
}

.market-board span {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  font-weight: 800;
}

.market-board em {
  justify-self: end;
  color: #24d18e;
  font-style: normal;
  font-weight: 900;
}

.market-board em.down {
  color: #ff4d5d;
}

.security-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 20%, rgba(227, 6, 19, .26), transparent 30%),
    linear-gradient(135deg, var(--navy), #040913);
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 19, 38, .16);
}

.security-card h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
}

.security-card p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

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

.security-points article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
}

.security-points strong,
.security-points small {
  display: block;
}

.security-points strong {
  color: #fff;
}

.security-points small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.tool-list strong,
.tool-list span {
  display: block;
}

.tool-list strong {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 18px;
}

.tool-list span {
  color: var(--muted);
  line-height: 1.55;
}

.funding-card {
  border-radius: 34px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 48px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 34px;
  box-shadow: 0 24px 70px rgba(227, 6, 19, .22);
}

.funding-card h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  margin: 0;
}

.funding-card .eyebrow {
  color: rgba(255, 255, 255, .86);
}

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

.funding-points span {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 18px;
  font-weight: 900;
}

.steps {
  background: #fff;
}

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

.steps-grid article {
  padding: 28px;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.cta {
  padding: 0 0 104px;
}

.cta-card {
  text-align: center;
  color: #fff;
  border-radius: 40px;
  padding: 64px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 6, 19, .55), transparent 38%),
    linear-gradient(135deg, var(--navy), #040913);
  overflow: hidden;
}

.cta-card img {
  height: 58px;
  margin: 0 auto 28px;
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
}

.cta-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  max-width: 560px;
  margin: 18px auto 0;
}

.cta-card .hero-actions {
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 78% 8%, rgba(227, 6, 19, .18), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 62%, #22070b 100%);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 830px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.72;
}

.soft-panel {
  background: var(--soft);
}

.data-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .06);
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.data-table th,
.data-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table th {
  color: var(--navy);
  background: #f8fafc;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

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

.learn-card {
  min-height: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .06);
}

.learn-card span {
  display: inline-flex;
  margin-bottom: 24px;
  background: rgba(227, 6, 19, .09);
  color: var(--red);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.learn-card h3 {
  color: var(--navy);
  margin: 0 0 12px;
  font-family: var(--display);
  letter-spacing: -.03em;
  font-size: 24px;
}

.learn-card p {
  color: var(--muted);
  line-height: 1.65;
}

.learn-card small {
  color: var(--red);
  font-weight: 900;
}

.form-grid,
.portal-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
  gap: 54px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
  gap: 54px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods article,
.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .06);
}

.contact-methods article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
}

.contact-methods span,
.support-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 900;
}

.contact-methods h3,
.support-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: -.03em;
}

.contact-methods p,
.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact-methods small {
  display: block;
  margin-top: 6px;
  color: #98a2b3;
  font-weight: 700;
}

.contact-form {
  position: relative;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.support-card {
  padding: 24px;
}

.support-card span {
  margin-bottom: 22px;
  background: var(--navy);
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 38px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 20%, rgba(227, 6, 19, .1), transparent 28%),
    #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .07);
}

.contact-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.045em;
}

.contact-cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .07);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
}

.lead-form label.full,
.lead-form button,
.lead-form .form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(227, 6, 19, .55);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .08);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, .045);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.portal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, .07);
}

.portal-card h2 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin: 0;
}

.portal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  background: #050b15;
  color: rgba(255, 255, 255, .72);
  padding: 42px 0 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(227, 6, 19, .22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 32%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}

.footer-brand-card,
.footer-social-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  min-height: 260px;
}

.footer-brand-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.62;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.footer-contact-row a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .055);
  min-width: 0;
  color: rgba(255, 255, 255, .76);
}

.footer-contact-row a:hover {
  border-color: rgba(227, 6, 19, .55);
  background: rgba(227, 6, 19, .1);
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(227, 6, 19, .95), rgba(178, 0, 13, .95));
  color: #fff;
  box-shadow: 0 14px 30px rgba(227, 6, 19, .18);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-contact-row strong,
.footer-contact-row small {
  display: block;
  min-width: 0;
}

.footer-contact-row strong {
  color: #fff;
  font-size: 12.5px;
  line-height: 1.1;
}

.footer-contact-row small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-social-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.footer-social-card span {
  color: #fff;
  font-weight: 900;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -.03em;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #101826;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.social-icons svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  display: block;
}

.social-icons a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.social-icons .facebook {
  background: #1877f2;
}

.social-icons .instagram {
  background: radial-gradient(circle at 30% 108%, #fdf497 0 18%, #fd5949 42%, #d6249f 64%, #285AEB 100%);
}

.social-icons .linkedin {
  background: #0a66c2;
}

.social-icons .x-twitter {
  background: #050505;
}

.social-icons .youtube {
  background: #ff0033;
}

.trustpilot-card {
  display: grid;
  gap: 9px;
  margin-top: 2px;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid rgba(0, 182, 122, .28);
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 182, 122, .2), transparent 34%),
    rgba(255, 255, 255, .07);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.trustpilot-card:hover {
  color: #fff;
  border-color: rgba(0, 182, 122, .55);
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 182, 122, .28), transparent 36%),
    rgba(255, 255, 255, .09);
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trustpilot-logo span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00b67a;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.trustpilot-logo strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: -.02em;
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
}

.trustpilot-stars i {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #00b67a;
  color: #fff;
  font-style: normal;
  font-size: 15px;
  line-height: 1;
}

.trustpilot-card small {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 800;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
  height: 44px;
  margin-bottom: 14px;
}

.footer h4 {
  color: #fff;
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -.02em;
}

.footer-grid a,
.footer-risk a,
.footer-bottom a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.35;
}

.footer-grid a:hover,
.footer-risk a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.footer-trust article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  min-width: 0;
}

.footer-trust span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(227, 6, 19, .18);
}

.footer-trust svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.footer-trust strong,
.footer-trust small {
  display: block;
}

.footer-trust strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
}

.footer-trust small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .56);
  line-height: 1.38;
}

.footer-risk {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 26px;
  padding-top: 18px;
  font-size: 12px;
  line-height: 1.62;
  color: rgba(255, 255, 255, .62);
}

.footer-risk p {
  margin: 9px 0 0;
  max-width: 1120px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .5);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    display: flex;
    position: absolute;
    left: 18px;
    right: 18px;
    background: rgba(5, 11, 21, .98);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow);
  }

  .site-header.open .nav-links {
    top: 92px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px 22px 0 0;
    color: rgba(255, 255, 255, .82);
  }

  .site-header.open .nav-item {
    width: 100%;
    display: grid;
    gap: 8px;
  }

  .site-header.open .submenu {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, .06);
    box-shadow: none;
    border-color: rgba(255, 255, 255, .08);
  }

  .site-header.open .mega-menu,
  .site-header.open .mega-menu.compact {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .site-header.open .mega-intro {
    padding: 16px;
  }

  .site-header.open .mega-intro h3 {
    font-size: 18px;
  }

  .site-header.open .mega-intro p,
  .site-header.open .mega-intro .mega-cta {
    display: none;
  }

  .site-header.open .mega-groups {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, .96);
  }

  .site-header.open .mega-group h4 {
    margin: 4px 0 6px;
  }

  .site-header.open .submenu a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .site-header.scrolled.open .nav-links,
  .site-header.scrolled.open .nav-actions {
    background: rgba(255, 255, 255, .98);
    border-color: var(--line);
  }

  .site-header.scrolled.open .nav-links {
    color: #23324a;
  }

  .site-header.open .nav-actions {
    top: 346px;
    padding: 18px 22px;
    border-radius: 0 0 22px 22px;
  }

  .hero-grid,
  .split,
  .platform-grid,
  .tools-grid,
  .funding-card,
  .form-grid,
  .portal-card,
  .security-card {
    grid-template-columns: 1fr;
  }

  .ic-hero-stage {
    min-height: 690px;
  }

  .ic-hero-slide {
    padding: 88px 28px 112px;
    background-position: center right;
  }

  .ic-hero-copy h1 {
    font-size: clamp(46px, 11vw, 76px);
  }

  .market-grid,
  .account-grid,
  .condition-grid,
  .feature-grid,
  .security-points,
  .steps-grid,
  .footer-grid,
  .footer-trust,
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .scroll-banner-card {
    grid-template-columns: 1fr;
    width: min(520px, calc(100vw - 34px));
  }

  .banner-visual {
    min-height: 150px;
  }

  .home-banner-shell {
    border-radius: 28px;
    mask-image: none;
  }

  .home-banner-slide {
    grid-template-columns: 1fr;
    width: min(620px, calc(100vw - 38px));
  }
}

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

  .nav-shell {
    width: min(100% - 24px, 1240px);
    height: 74px;
  }

  .brand {
    width: 178px;
  }

  .brand img {
    height: 36px;
  }

  .hero {
    padding: 62px 0;
  }

  .ic-hero {
    padding: 0;
  }

  .hero-grid {
    gap: 34px;
  }

  .ic-hero-stage {
    min-height: 640px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .ic-hero-copy h1 {
    font-size: 43px;
    letter-spacing: -.06em;
    line-height: .95;
  }

  .ic-hero-copy p {
    font-size: 16px;
    margin-top: 20px;
  }

  .ic-hero-progress {
    left: 18px;
    bottom: 28px;
  }

  .ic-hero-progress span {
    width: 30px;
  }

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

  .home-banner-shell {
    margin-top: 38px;
  }

  .home-banner-track {
    gap: 14px;
    animation-duration: 38s;
  }

  .home-banner-slide {
    min-height: auto;
    padding: 24px;
    border-radius: 26px;
  }

  .home-banner-art {
    min-height: 178px;
  }

  .home-banner-art small {
    margin-top: -32px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .trading-card {
    border-radius: 24px;
    padding: 18px;
  }

  .chart-area {
    height: 220px;
  }

  .quotes div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section {
    padding: 70px 0;
  }

  .stats-grid,
  .market-grid,
  .account-grid,
  .tool-list,
  .condition-grid,
  .feature-grid,
  .security-points,
  .funding-points,
  .steps-grid,
  .footer-grid,
  .footer-top,
  .footer-trust,
  .learn-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 42px;
  }

  .footer-brand-card,
  .footer-social-card {
    padding: 22px;
    border-radius: 24px;
  }

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

  .social-icons a {
    flex: 1 1 auto;
  }

  .account-card.featured {
    transform: none;
  }

  .banner-window {
    padding: 22px 0 28px;
    mask-image: none;
  }

  .banner-track {
    gap: 14px;
    animation-duration: 34s;
  }

  .ticker-track span {
    min-width: 168px;
    padding: 12px 18px;
  }

  .banner-copy h3 {
    font-size: 26px;
  }

  .funding-card {
    padding: 30px;
    border-radius: 26px;
  }

  .security-card {
    padding: 30px;
    border-radius: 26px;
  }

  .market-board {
    padding: 14px;
    border-radius: 24px;
  }

  .market-board div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .market-board em {
    justify-self: start;
  }

  .cta {
    padding-bottom: 70px;
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
  }

  .ic-hero-stage {
    min-height: 620px;
  }

  .ic-hero-copy {
    max-width: 760px;
  }

  .ic-hero-copy h1 {
    font-size: clamp(42px, 5.8vw, 68px);
  }
}

@media (max-width: 980px) {
  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    z-index: 40;
  }

  .site-header.open .nav-links {
    gap: 14px;
  }

  .ic-hero-stage {
    min-height: 590px;
  }

  .ic-hero-slide {
    padding: 92px 28px 108px;
    background-image:
      linear-gradient(90deg, rgba(3, 8, 18, .96) 0%, rgba(7, 19, 38, .9) 54%, rgba(7, 19, 38, .58) 100%),
      var(--hero-bg);
  }

  .ic-hero-copy {
    max-width: 700px;
  }

  .section {
    padding: 82px 0;
  }

  .platform-grid,
  .funding-card,
  .form-grid,
  .contact-layout,
  .portal-card {
    grid-template-columns: 1fr;
  }

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

  .contact-cta {
    grid-template-columns: 1fr;
  }

  .funding-card {
    padding: 38px;
  }

  .page-hero {
    padding: 74px 0 64px;
  }
}

@media (max-width: 760px) {
  .risk-strip {
    font-size: 11px;
    line-height: 1.45;
  }

  .nav-shell {
    height: 72px;
  }

  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    left: 12px;
    right: 12px;
  }

  .site-header.open .nav-links {
    top: 82px;
    padding: 18px;
  }

  .site-header.open .nav-actions {
    top: 326px;
    padding: 16px 18px;
  }

  .ic-hero-stage {
    min-height: 560px;
  }

  .ic-hero-slide {
    align-items: flex-end;
    padding: 92px 18px 86px;
    background-position: 62% center;
  }

  .ic-hero-slide::before {
    background-size: 50px 50px;
    opacity: .32;
  }

  .ic-hero-slide::after {
    width: 78vw;
    height: 78vw;
    right: -38vw;
    top: -24vw;
  }

  .ic-hero-copy {
    max-width: 100%;
  }

  .ic-hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
    padding: 8px 11px;
  }

  .ic-hero-copy h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .ic-hero-copy p {
    max-width: 96%;
    font-size: 15.5px;
    line-height: 1.62;
    margin-top: 18px;
  }

  .hero-actions {
    gap: 11px;
    margin-top: 24px;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .ic-hero-progress {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .ic-hero-progress span {
    flex: 1;
    width: auto;
    max-width: 42px;
  }

  .stats-bar {
    margin-top: 0;
  }

  .section-copy h2,
  .section-head h2,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section-copy p,
  .section-head p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.66;
  }

  .benefit-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .market-card,
  .account-card,
  .tool-list article,
  .steps-grid article,
  .learn-card,
  .support-card,
  .portal-card,
  .lead-form {
    border-radius: 22px;
    padding: 22px;
  }

  .account-metrics,
  .funding-points {
    grid-template-columns: 1fr;
  }

  .platform-panel {
    border-radius: 26px;
    padding: 22px;
  }

  .mt5-visual,
  .mt5-visual > img {
    min-height: 330px;
  }

  .platform-showcase .platform-brand {
    height: 36px;
  }

  .device-frame {
    min-height: 280px;
    border-radius: 22px;
  }

  .cta-card {
    border-radius: 28px;
    padding: 44px 20px;
  }

  .hero.ic-hero .ic-hero-copy h1 {
    max-width: 96%;
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .hero.ic-hero .ic-hero-copy p {
    max-width: 92%;
    font-size: 15.5px;
    line-height: 1.58;
  }
}

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

  .brand {
    width: 152px;
  }

  .brand img {
    height: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .site-header.open .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.open .nav-actions .ghost-btn,
  .site-header.open .nav-actions .primary-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .ic-hero-stage {
    min-height: 600px;
  }

  .ic-hero-slide {
    padding: 84px 14px 78px;
  }

  .ic-hero-copy h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

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

  .hero.ic-hero .ic-hero-copy h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

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

  .home-banner-content h2 {
    font-size: 31px;
  }

  .stats-grid div,
  .market-card,
  .account-card,
  .tool-list article,
  .steps-grid article,
  .learn-card {
    min-width: 0;
  }

  .funding-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  .contact-methods article {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .mt5-visual,
  .mt5-visual > img {
    min-height: 300px;
  }

  .mt5-badge {
    left: 16px;
    bottom: 16px;
    min-width: 138px;
    padding: 14px;
  }

  .mt5-badge strong {
    font-size: 28px;
  }

  .mt5-ticket {
    right: 14px;
    top: 76px;
    min-width: 132px;
    padding: 13px;
  }

  .mt5-ticket strong {
    font-size: 20px;
  }

  .page-hero {
    padding: 58px 0 54px;
  }

  .footer {
    padding-top: 46px;
  }
}

.image-hero .hero-glow,
.image-hero .ic-hero-slide::before,
.image-hero .ic-hero-slide::after {
  display: none;
}

.image-hero .ic-hero-stage {
  height: clamp(380px, 33.85vw, 650px);
  min-height: 0;
  background: #071326;
}

.image-hero .ic-hero-slide {
  padding: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.image-hero .ic-hero-slide.active {
  transform: translateX(0);
}

.image-hero .ic-hero-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.image-hero .slide-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.image-hero .ic-hero-progress {
  left: 50%;
  right: auto;
  bottom: 18px;
  transform: translateX(-50%);
}

.image-hero .ic-hero-progress span {
  width: 42px;
  background: rgba(255, 255, 255, .34);
}

@media (max-width: 980px) {
  .image-hero .ic-hero-stage {
    height: 430px;
    min-height: 0;
  }

  .image-hero .ic-hero-slide {
    padding: 0;
    background-image: var(--hero-bg);
    background-position: center;
  }
}

@media (max-width: 680px) {
  .image-hero .ic-hero-stage {
    height: 500px;
    min-height: 0;
  }

  .image-hero .ic-hero-slide {
    background-position: 28% center;
  }

  .image-hero .ic-hero-progress {
    left: 18px;
    right: 18px;
    bottom: 18px;
    transform: none;
  }

  .image-hero .ic-hero-progress span {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .image-hero .ic-hero-stage {
    height: 470px;
  }
}
