@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand-deep: #12006b;
  --brand-main: #4f2cff;
  --brand-light: #6a43ff;
  --brand-pink: #e85aa9;
  --success: #13b76a;
  --broker-green: var(--brand-main);
  --broker-green-dark: var(--brand-deep);
  --db-lime: var(--brand-pink);
  --db-gradient: linear-gradient(90deg, var(--brand-main), var(--brand-light), var(--brand-pink));
  --success-soft: #f3f0ff;
  --ink: #161922;
  --muted: #687083;
  --line: #e7eaf0;
  --soft: #f5f7fb;
  --white: #ffffff;
  --footer: #f0f2f6;
  --radius: 8px;
  --shadow: 0 12px 34px rgba(18, 0, 107, 0.1);
  --container: min(1540px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 1000;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  padding: 9px 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.clone-container,
.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 1040px;
}

.top-strip {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-main), var(--brand-pink));
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
}

.top-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.top-regulators,
.top-strip-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-regulators {
  justify-self: start;
}

.top-strip-actions {
  justify-content: flex-end;
  justify-self: end;
}

.top-regulators strong {
  font-weight: 900;
}

.top-regulators span {
  position: relative;
  font-weight: 800;
}

.top-regulators span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-50%);
}

.top-strip-actions a {
  color: var(--white);
  font-weight: 800;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-phone svg {
  width: 25px;
  height: 25px;
}

.prime-pill,
.language-pill,
.theme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  background: var(--white);
  color: #1b2430;
  font-weight: 800;
  line-height: 1;
}

.prime-pill {
  justify-self: center;
  min-width: 230px;
  min-height: 38px;
  padding: 8px 14px;
  box-shadow: 0 8px 18px rgba(79, 44, 255, 0.18);
}

.prime-pill span {
  color: var(--brand-deep);
  font-style: italic;
}

.prime-pill b {
  color: var(--broker-green);
}

.language-pill {
  min-height: 42px;
  padding: 9px 14px;
  cursor: pointer;
}

.theme-pill {
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.language-pill svg,
.theme-pill svg {
  width: 16px;
  height: 16px;
}

.flag-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.1);
}

.flag-ae { background: linear-gradient(90deg, #ef3340 0 28%, #fff 28% 52%, #009739 52% 76%, #000 76%); }
.flag-sc { background: conic-gradient(from 220deg, #003f87 0 20%, #fcd116 20% 40%, #d62828 40% 60%, #fff 60% 78%, #007a3d 78%); }
.flag-mu { background: linear-gradient(180deg, #ea2839 0 25%, #1a206d 25% 50%, #ffd500 50% 75%, #00a551 75%); }
.flag-ca { background: linear-gradient(90deg, #d52b1e 0 28%, #fff 28% 72%, #d52b1e 72%); }
.flag-uk { background: linear-gradient(45deg, #012169 0 38%, #fff 38% 44%, #c8102e 44% 56%, #fff 56% 62%, #012169 62%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 3px 14px rgba(18, 24, 38, 0.06);
}

.site-header.is-stuck {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.35s ease-out;
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(175px, 13vw, 220px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  color: #181d27;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: transparent;
  color: var(--broker-green-dark);
}

.primary-nav a svg {
  width: 14px;
  height: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: var(--db-gradient);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 30px;
  box-shadow: 0 12px 26px rgba(34, 182, 71, 0.22);
}

.account-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dfe4ec;
  border-radius: 9px;
  color: #111827;
  background: var(--white);
}

.account-button svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--brand-deep);
}

.nav-toggle svg,
.nav-open svg,
.pill-cta svg,
.dark-pill svg {
  width: 16px;
  height: 16px;
}

.hero-clone {
  position: relative;
  min-height: clamp(650px, calc(100vh - 154px), 880px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroPan 18s var(--ease-out) infinite alternate;
}

.hero-video {
  filter: saturate(1.06) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 0, 107, 0.42), rgba(21, 20, 40, 0.22) 43%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 38%, rgba(232, 90, 169, 0.14), rgba(0, 0, 0, 0.28) 72%);
}

.hero-center {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  padding: 120px 0 104px;
}

.hero-center h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 3.45vw, 4.1rem);
  font-weight: 800;
  line-height: 1.04;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-title-stack {
  margin-bottom: 12px;
}

.hero-gradient-word {
  display: block;
  margin-bottom: -4px;
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 3.65vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.hero-center p {
  max-width: 930px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 1.25vw, 1.42rem);
  font-weight: 600;
  line-height: 1.35;
}

.pill-cta,
.dark-pill,
.view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: var(--db-gradient);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  padding: 15px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.pill-cta::after,
.dark-pill::after,
.view-more::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -40%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(18deg);
  animation: shineSweep 3.8s ease-in-out infinite;
}

.pill-cta:hover,
.dark-pill:hover,
.view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(79, 44, 255, 0.22);
}

.pill-cta.small {
  padding: 10px 15px;
}

.dark-pill {
  background: #0f1118;
}

.hero-markets {
  display: none;
}

.hero-regulation {
  margin-top: 62px;
}

.hero-regulation p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 800;
}

.hero-regulation p svg {
  width: 24px;
  height: 24px;
}

.hero-reg-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-reg-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 165px;
  min-height: 56px;
  border: 1px solid rgba(214, 235, 173, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
}

.hero-reg-pills a svg {
  width: 16px;
  height: 16px;
}

.floating-tools {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.left-tools {
  left: 16px;
  bottom: 22px;
}

.right-tools {
  right: 16px;
  bottom: 38px;
}

.floating-tools a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  min-width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--white);
  color: var(--broker-green);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  padding: 0 16px;
  font-weight: 800;
}

.right-tools a:last-child {
  background: var(--broker-green);
  color: #111;
  width: 66px;
  height: 66px;
}

.floating-tools svg {
  width: 24px;
  height: 24px;
}

.quote-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.quote-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(6, 220px);
  gap: 1px;
  min-height: 58px;
  width: max-content;
}

.quote-grid div {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 7px 12px;
}

.quote-grid div:first-child {
  border-left: 1px solid var(--line);
}

.quote-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.quote-grid b {
  color: var(--broker-green-dark);
  font-size: 1rem;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(79, 44, 255, 0.07), rgba(232, 90, 169, 0.05)),
    var(--white);
  padding: 26px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.trust-copy {
  display: grid;
  align-content: center;
}

.trust-copy span {
  color: var(--broker-green-dark);
  font-size: 0.84rem;
  font-weight: 950;
}

.trust-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
}

.trust-grid article {
  display: grid;
  align-content: center;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 0, 107, 0.05);
  padding: 18px;
}

.trust-grid article strong {
  color: var(--broker-green-dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.22rem;
  line-height: 1.05;
}

.trust-grid article span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.clone-section {
  position: relative;
  padding: 74px 0;
}

.clone-heading {
  max-width: 940px;
  margin: 0 auto 38px;
  text-align: center;
}

.clone-heading.tight {
  margin-bottom: 20px;
}

.clone-heading span,
.section-title-left span,
.ib-section h2 span {
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.clone-heading > span {
  display: block;
  background: none;
  color: var(--broker-green-dark);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.08rem, 3.7vw, 3.12rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.why-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(79, 44, 255, 0.1), transparent 18rem),
    radial-gradient(circle at 88% 68%, rgba(232, 90, 169, 0.08), transparent 20rem),
    linear-gradient(180deg, #fff, #fbfcff);
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 42px auto auto -120px;
  width: 320px;
  height: 320px;
  border: 24px solid rgba(79, 44, 255, 0.06);
  border-radius: 999px;
  animation: floatSoft 7s ease-in-out infinite;
}

.why-section .reason-grid {
  perspective: 1200px;
}

.reason-card,
.market-shell,
.service-grid article,
.news-grid article,
.page-panel,
.auth-card,
.contact-form,
.inner-stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 10px 24px rgba(18, 0, 107, 0.04);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}

.reason-card:hover,
.service-grid article:hover,
.news-grid article:hover,
.page-panel:hover {
  border-color: rgba(79, 44, 255, 0.32);
  box-shadow: 0 18px 42px rgba(18, 0, 107, 0.12);
  transform: translateY(-5px);
}

.reason-card {
  min-height: 176px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--db-gradient);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-card:nth-child(2n) {
  background: linear-gradient(180deg, #fff, #f4fbf0);
}

.reason-card:nth-child(3n) {
  background: linear-gradient(180deg, #fff, #f6fcf8);
}

.reason-card svg,
.service-grid svg,
.page-panel svg {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--broker-green-dark);
}

.reason-card p,
.service-grid p,
.news-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.withdraw-section {
  padding: 58px 0 66px;
  background:
    linear-gradient(120deg, rgba(79, 44, 255, 0.09), transparent 32%),
    linear-gradient(240deg, rgba(232, 90, 169, 0.08), transparent 34%),
    var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.withdraw-section::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -118px;
  height: 230px;
  border-top: 20px solid rgba(79, 44, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.withdraw-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 14px;
}

.withdraw-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 24px;
  text-align: left;
}

.withdraw-grid svg {
  width: 22px;
  height: 22px;
  color: var(--broker-green-dark);
}

.withdraw-grid strong {
  display: block;
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.05rem;
  line-height: 1.1;
}

.withdraw-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.payment-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

.payment-mini span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 11px;
}

.payment-mini svg {
  width: 17px;
  color: var(--broker-green-dark);
}

.withdraw-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 18px auto 0;
  position: relative;
  z-index: 1;
}

.withdraw-flow span {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebeef5;
}

.withdraw-flow span::before {
  content: "";
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--db-gradient);
  animation: progressPulse 2.6s ease-in-out infinite;
}

.market-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 44, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff, #f7f8fc 60%, #fff);
}

.market-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(79, 44, 255, 0.16);
  border-radius: 999px;
}

.market-shell {
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 251, 0.96)),
    var(--soft);
  padding: 22px;
  position: relative;
  z-index: 1;
}

.market-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--db-gradient);
}

.market-shell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  margin: 0 -4px 12px;
  padding: 0 4px 13px;
}

.market-shell-top span {
  color: var(--broker-green-dark);
  font-weight: 900;
}

.market-shell-top b {
  border-radius: 999px;
  background: #f3f0ff;
  color: var(--broker-green-dark);
  font-size: 0.78rem;
  padding: 7px 12px;
}

.market-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
  margin-bottom: 10px;
  overflow-x: auto;
}

.market-tabs button,
.product-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
  padding: 8px 14px;
  white-space: nowrap;
}

.market-tabs button.active,
.product-tabs button.active,
.market-tabs button:hover,
.product-tabs button:hover {
  background: #f3f0ff;
  color: var(--broker-green-dark);
}

.market-table-wrap {
  max-height: 430px;
  overflow: auto;
  border-radius: 6px;
  background: var(--white);
}

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

.market-table th,
.market-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
  text-align: left;
  font-size: 0.92rem;
}

.market-table th {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.market-table td:first-child {
  color: var(--broker-green-dark);
  font-weight: 950;
}

.positive {
  color: #0aa864;
  font-weight: 850;
}

.negative {
  color: #e44763;
  font-weight: 850;
}

.products-wave {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  background:
    linear-gradient(90deg, rgba(79, 44, 255, 0.06), transparent 25%, rgba(232, 90, 169, 0.06)),
    radial-gradient(circle at 50% 80%, rgba(79, 44, 255, 0.11), transparent 20rem),
    var(--white);
}

.products-wave::before,
.products-wave::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 98px;
  border-top: 16px solid rgba(79, 44, 255, 0.18);
  border-radius: 50%;
  bottom: -18px;
  transform: rotate(4deg);
}

.products-wave::after {
  bottom: 22px;
  border-top-color: rgba(232, 90, 169, 0.18);
  transform: rotate(-4deg);
}

.products-wave .clone-container {
  position: relative;
  z-index: 1;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px;
  overflow-x: auto;
}

.product-tabs button {
  border: 1px solid var(--line);
  background: var(--white);
  min-width: 116px;
  box-shadow: 0 8px 22px rgba(18, 0, 107, 0.05);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background 0.22s ease;
}

.product-tabs button:hover,
.product-tabs button.active {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(79, 44, 255, 0.14);
}

.wave-showcase {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 150px;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 234, 240, 0.78);
  box-shadow: 0 22px 50px rgba(18, 0, 107, 0.08);
  padding: 18px 34px;
}

.wave-showcase.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.product-blurb {
  max-width: 430px;
}

.product-blurb.left {
  justify-self: start;
}

.product-blurb.right {
  justify-self: end;
  text-align: left;
}

.product-blurb h3 {
  color: var(--broker-green-dark);
  font-size: 1.65rem;
}

.orbital-product {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  animation: floatSoft 4s ease-in-out infinite;
}

.orbital-product span {
  position: absolute;
  display: block;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--db-gradient);
  box-shadow: var(--shadow);
}

.orbital-product span:nth-child(1) {
  width: 74px;
  height: 74px;
  left: 0;
  bottom: 18px;
  background: linear-gradient(135deg, #a6acb9, #60697a);
}

.orbital-product span:nth-child(2) {
  width: 64px;
  height: 64px;
  right: 12px;
  top: 4px;
}

.orbital-product span:nth-child(3) {
  width: 46px;
  height: 46px;
  right: 2px;
  bottom: 16px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-pink));
}

.apps-section {
  padding-top: 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(232, 90, 169, 0.2), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(79, 44, 255, 0.22), transparent 24rem),
    #09091b;
}

.apps-section .clone-heading h2,
.apps-section .clone-heading p {
  color: var(--white);
}

.apps-section .clone-heading p {
  opacity: 0.74;
}

.apps-section::before {
  content: "SEVENYX";
  position: absolute;
  left: 50%;
  top: 32px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.app-card {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 0, 107, 0.98), rgba(79, 44, 255, 0.82)),
    var(--brand-deep);
  color: var(--white);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.app-card::before {
  content: "7X";
  position: absolute;
  right: -10px;
  top: -34px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 9rem;
  font-weight: 950;
}

.app-card h3,
.app-card p {
  color: var(--white);
}

.app-card p {
  opacity: 0.82;
}

.app-card.wide {
  grid-column: span 2;
  min-height: 230px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.app-mockup {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(260px, 100%);
  height: 180px;
  border: 6px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  object-fit: cover;
  object-position: right center;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.app-mockup-social {
  object-position: center center;
}

.app-mockup-pay {
  width: min(330px, 100%);
  height: 190px;
  object-position: right bottom;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.app-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.app-points li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  padding: 8px 11px;
}

.store-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 12px;
}

.phone-mini {
  align-self: end;
  justify-self: end;
  width: 92px;
  height: 148px;
  border: 7px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 251, 0.96)),
    var(--white);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.phone-mini.large {
  width: 132px;
  height: 176px;
}

.phone-mini::before {
  content: "";
  display: block;
  width: 45%;
  height: 6px;
  border-radius: 999px;
  background: #d8dce5;
  margin: 14px auto;
}

.phone-mini::after {
  content: "";
  display: block;
  height: 74px;
  margin: 18px 12px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 42%, var(--broker-green) 42% 48%, transparent 48%),
    linear-gradient(135deg, rgba(79, 44, 255, 0.18), rgba(232, 90, 169, 0.18));
}

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}

.service-grid article {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  grid-column: span 3;
  border-width: 2px;
  background:
    linear-gradient(180deg, #f7f8fb, #f1f3f8),
    var(--soft);
  overflow: hidden;
  padding: 24px;
}

.service-grid article:nth-child(1) {
  grid-column: span 6;
}

.service-grid article:nth-child(6) {
  grid-column: span 3;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 26%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 44, 255, 0.14), transparent 68%);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
  pointer-events: none;
}

.service-grid article:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.service-thumb {
  order: 6;
  display: block;
  width: calc(100% + 48px);
  height: 150px;
  max-width: none;
  margin: auto -24px -24px;
  object-fit: contain;
  object-position: center;
  border-top: 1px solid var(--line);
  transform: translateY(18px) scale(1.02);
  transition:
    transform 0.3s var(--ease-out),
    filter 0.3s var(--ease-out);
}

.service-grid article:hover .service-thumb {
  filter: saturate(1.06);
  transform: translateY(6px) scale(1.045);
}

.service-grid article:nth-child(1) .service-thumb {
  position: absolute;
  right: -8px;
  bottom: -16px;
  width: min(48%, 360px);
  height: 82%;
  margin: 0;
  border-top: 0;
  border-left: 1px solid var(--line);
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-grid article:nth-child(1) h3,
.service-grid article:nth-child(1) p,
.service-grid article:nth-child(1) a {
  max-width: 48%;
}

.service-grid article:nth-child(1) svg {
  max-width: 48%;
}

.service-thumb-1,
.service-thumb-2,
.service-thumb-3,
.service-thumb-4,
.service-thumb-5,
.service-thumb-6,
.service-thumb-7,
.service-thumb-8 {
  object-position: center;
}

.service-grid article a {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  color: var(--broker-green-dark);
  font-size: 0.88rem;
  font-weight: 950;
}

.ib-section {
  padding: 78px 0;
  background:
    linear-gradient(100deg, #fff 0 56%, #f7f4ff 56% 100%);
}

.ib-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 64px;
}

.ib-section h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ib-art {
  position: relative;
  min-height: 250px;
  transform: rotate(-1.4deg);
  transition: transform 0.35s var(--ease-out);
}

.ib-art:hover {
  transform: rotate(0deg) translateY(-4px);
}

.ib-art img {
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 26px 42px rgba(18, 0, 107, 0.16));
}

.growth-bars {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: flex;
  align-items: end;
  gap: 14px;
  width: 220px;
  height: 180px;
  transform: rotate(-8deg);
}

.growth-bars span {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: var(--db-gradient);
  box-shadow: 0 12px 28px rgba(79, 44, 255, 0.18);
}

.growth-bars span:nth-child(1) { height: 42%; }
.growth-bars span:nth-child(2) { height: 58%; }
.growth-bars span:nth-child(3) { height: 74%; }
.growth-bars span:nth-child(4) { height: 96%; }

.partner-avatar {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border: 11px solid #f3f0ff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #f7f4ff);
  box-shadow: var(--shadow);
}

.partner-avatar svg {
  width: 68px;
  height: 68px;
  color: var(--broker-green-dark);
}

.setup-section {
  padding-top: 58px;
  background:
    radial-gradient(circle at 50% 15%, rgba(79, 44, 255, 0.1), transparent 22rem),
    #fff;
}

.tablet-video {
  position: relative;
  overflow: hidden;
  border: 18px solid #15171f;
  border-bottom-width: 34px;
  border-radius: var(--radius);
  background: #15171f;
  box-shadow: 0 22px 48px rgba(18, 0, 107, 0.2);
}

.tablet-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
}

.tablet-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 0, 107, 0.08), rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--white);
  color: var(--broker-green-dark);
  transform: translate(-50%, -50%);
  animation: playPulse 2s ease-in-out infinite;
}

.video-caption {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 1;
  max-width: 430px;
}

.video-caption h3,
.video-caption p {
  color: var(--white);
}

.video-caption p {
  margin-bottom: 0;
  opacity: 0.86;
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.setup-steps article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 0, 107, 0.06);
  padding: 16px 18px;
}

.setup-steps b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--db-gradient);
  color: var(--white);
  font-size: 0.88rem;
}

.setup-steps span {
  color: var(--ink);
  font-weight: 850;
}

.section-title-left {
  margin-bottom: 18px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  padding: 12px;
}

.news-grid article:first-child {
  grid-column: auto;
}

.news-image {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 6px;
  border-bottom: 0;
  transition: transform 0.35s var(--ease-out);
}

.news-grid article:first-child .news-image {
  height: 148px;
}

.news-grid article:hover .news-image {
  transform: scale(1.045);
}

.news-image-1,
.news-image-2,
.news-image-3,
.news-image-4,
.news-image-5,
.news-image-6 {
  object-position: center;
}

.news-thumb {
  display: grid;
  place-items: center;
  min-height: 165px;
  background:
    linear-gradient(135deg, rgba(18, 0, 107, 0.92), rgba(79, 44, 255, 0.72)),
    var(--brand-deep);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
}

.news-thumb.alt {
  background:
    linear-gradient(135deg, rgba(232, 90, 169, 0.82), rgba(18, 0, 107, 0.92)),
    var(--brand-deep);
}

.news-grid h3,
.news-grid p {
  padding-right: 4px;
  padding-left: 4px;
}

.news-grid h3 {
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.32;
}

.news-grid p {
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--broker-green-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.view-more {
  margin: 22px auto 0;
  width: max-content;
}

.brand-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(79, 44, 255, 0.1), transparent 18rem),
    radial-gradient(circle at 8% 88%, rgba(232, 90, 169, 0.08), transparent 18rem),
    linear-gradient(180deg, #fff, #f8f9fd),
    var(--white);
  overflow: hidden;
}

.brand-grid {
  display: grid;
  gap: 30px;
  position: relative;
}

.brand-grid::before {
  content: "";
  position: absolute;
  inset: -30px -120px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 44, 255, 0.08), rgba(232, 90, 169, 0.09));
  filter: blur(2px);
  pointer-events: none;
}

.brand-row {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.brand-block span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-block h2 {
  margin: 0;
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

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

.logo-tile {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 82px;
  border: 1px solid rgba(18, 0, 107, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 253, 0.96)),
    var(--white);
  box-shadow: 0 12px 26px rgba(18, 0, 107, 0.06);
  padding: 14px 18px;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s ease;
}

.logo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(79, 44, 255, 0.1), rgba(232, 90, 169, 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-tile:hover {
  border-color: rgba(79, 44, 255, 0.24);
  box-shadow: 0 18px 38px rgba(18, 0, 107, 0.12);
  transform: translateY(-3px);
}

.logo-tile:hover::before {
  opacity: 1;
}

.logo-tile img {
  position: relative;
  z-index: 1;
  width: min(170px, 100%);
  height: 48px;
  object-fit: contain;
}

.payment-row .logo-tile img {
  height: 50px;
}

.recognized-grid .logo-tile img {
  height: 52px;
}

.ready-cta {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-main), var(--brand-pink));
  background-size: 220% 100%;
  color: var(--white);
  animation: gradientFlow 8s ease-in-out infinite;
}

.ready-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
}

.ready-grid h2,
.ready-grid p {
  color: var(--white);
  margin-bottom: 0;
}

.ready-grid h2 {
  font-size: 2.1rem;
}

.ready-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f1118;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 950;
  padding: 14px 24px;
  white-space: nowrap;
}

.site-footer {
  background: var(--footer);
  color: #333a49;
  padding: 48px 0 34px;
}

.awards-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 30px;
}

.award-card {
  min-height: 116px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.award-card:first-child {
  background:
    linear-gradient(135deg, rgba(79, 44, 255, 0.08), rgba(232, 90, 169, 0.06)),
    var(--white);
}

.award-card strong {
  color: var(--brand-main);
  font-size: 1.3rem;
}

.award-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-row span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-main);
  font-size: 0.82rem;
  font-weight: 950;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 28px;
}

.footer-columns h3 {
  color: var(--brand-main);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  color: #525b6c;
  font-size: 0.9rem;
  font-weight: 750;
  padding: 4px 0;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid #d8dde6;
  padding-top: 22px;
}

.footer-legal h3 {
  color: var(--brand-main);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-legal p,
.footer-bottom {
  color: #616b7d;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #d8dde6;
  margin-top: 22px;
  padding-top: 18px;
}

.inner-hero {
  padding: 88px 0 58px;
  background: linear-gradient(135deg, #f7f5ff, #fff4fa);
  border-bottom: 1px solid var(--line);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: end;
}

.inner-hero h1 {
  margin: 8px 0 10px;
  color: var(--brand-deep);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  line-height: 1.02;
}

.eyebrow {
  color: var(--brand-main);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 11px 17px;
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-main), var(--brand-pink));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-main);
}

.inner-stat-card {
  padding: 30px;
  background: var(--white);
}

.inner-stat-card strong {
  display: block;
  color: var(--brand-main);
  font-size: 2.8rem;
  line-height: 1;
}

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

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

.page-panel {
  padding: 30px;
}

.page-panel b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-main), var(--brand-pink));
  color: var(--white);
  margin-bottom: 14px;
}

.split-grid,
.copy-grid,
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.account-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.account-table th {
  color: var(--brand-deep);
}

.account-table td {
  color: var(--muted);
}

.leaderboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
}

.leaderboard article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.leaderboard article + article {
  border-top: 1px solid var(--line);
}

.auth-visual {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 0, 107, 0.12), rgba(18, 0, 107, 0.64)),
    url("assets/sevenyx-trader-hero.png") center / cover;
}

.auth-card,
.contact-form {
  padding: 34px;
  background: var(--white);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  outline: none;
  padding: 14px 15px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(79, 44, 255, 0.12);
}

.success-note {
  display: none;
  border-radius: 8px;
  background: #f0edff;
  color: var(--brand-main);
  padding: 10px 12px;
  font-weight: 850;
}

.success-note.is-visible {
  display: block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.58s var(--ease-out),
    transform 0.58s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reason-card:nth-child(2),
.service-grid article:nth-child(2),
.news-grid article:nth-child(2) { transition-delay: 0.04s; }
.reason-card:nth-child(3),
.service-grid article:nth-child(3),
.news-grid article:nth-child(3) { transition-delay: 0.08s; }
.reason-card:nth-child(4),
.service-grid article:nth-child(4),
.news-grid article:nth-child(4) { transition-delay: 0.12s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shineSweep {
  0%, 55% { left: -45%; }
  100% { left: 130%; }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes heroPan {
  from { transform: scale(1.03) translate3d(-0.6%, 0, 0); }
  to { transform: scale(1.08) translate3d(0.8%, -0.5%, 0); }
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes progressPulse {
  0%, 100% { transform: scaleX(0.82); opacity: 0.74; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes playPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.45),
      0 18px 34px rgba(18, 0, 107, 0.22);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(255, 255, 255, 0),
      0 18px 34px rgba(18, 0, 107, 0.22);
  }
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (max-width: 1240px) {
  .primary-nav {
    position: fixed;
    top: 154px;
    left: 17px;
    right: 17px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-actions {
    margin-left: 0;
  }

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

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

  .service-grid article {
    grid-column: span 3;
  }

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

  .brand-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .quote-grid {
    grid-template-columns: repeat(6, 220px);
  }

  .trust-copy {
    grid-column: 1 / -1;
  }

  .ib-grid,
  .inner-hero-grid,
  .split-grid,
  .copy-grid,
  .auth-shell {
    grid-template-columns: 1fr;
  }

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

  .service-grid article:nth-child(1) {
    grid-column: span 6;
  }

  .service-grid article:nth-child(6),
  .news-grid article:first-child {
    grid-column: auto;
  }

  .service-grid article:nth-child(1) h3,
  .service-grid article:nth-child(1) p,
  .service-grid article:nth-child(1) a,
  .service-grid article:nth-child(1) svg {
    max-width: 52%;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 32px, 1120px);
  }

  body {
    font-size: 15.5px;
  }

  .top-strip-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 9px 0;
  }

  .top-regulators {
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
  }

  .top-regulators strong {
    font-weight: 800;
  }

  .top-regulators span {
    font-weight: 700;
  }

  .top-regulators span + span::before {
    left: -6px;
    height: 16px;
  }

  .prime-pill,
  .top-strip-actions,
  .nav-actions {
    display: none;
  }

  .top-strip-line {
    max-width: 100%;
    text-align: center;
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 148px;
  }

  .nav-shell {
    min-height: 56px;
  }

  .primary-nav {
    top: 98px;
    grid-template-columns: 1fr;
  }

  .hero-clone {
    min-height: 590px;
  }

  .hero-center {
    padding: 76px 0 60px;
  }

  .hero-center h1 {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .hero-center p {
    font-size: 1rem;
    font-weight: 600;
  }

  .hero-regulation {
    margin-top: 34px;
  }

  .hero-regulation p {
    font-size: 0.95rem;
  }

  .hero-reg-pills {
    gap: 8px;
  }

  .hero-reg-pills a {
    min-width: 132px;
    min-height: 48px;
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .floating-tools {
    display: none;
  }

  .clone-section,
  .products-wave {
    padding: 54px 0;
  }

  .quote-grid,
  .trust-grid,
  .reason-grid,
  .withdraw-grid,
  .payment-mini,
  .app-grid,
  .service-grid,
  .news-grid,
  .footer-columns,
  .footer-legal,
  .page-grid,
  .timeline,
  .form-row,
  .awards-row {
    grid-template-columns: 1fr;
  }

  .brand-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .logo-grid,
  .recognized-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-tile {
    min-height: 72px;
    padding: 10px;
  }

  .logo-tile img,
  .payment-row .logo-tile img,
  .recognized-grid .logo-tile img {
    height: 42px;
  }

  .service-grid article,
  .service-grid article:nth-child(1),
  .service-grid article:nth-child(6) {
    grid-column: auto;
    min-height: 300px;
  }

  .service-grid article:nth-child(1) .service-thumb {
    position: static;
    width: calc(100% + 48px);
    height: 150px;
    margin: auto -24px -24px;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 0;
  }

  .service-grid article:nth-child(1) h3,
  .service-grid article:nth-child(1) p,
  .service-grid article:nth-child(1) a,
  .service-grid article:nth-child(1) svg {
    max-width: none;
  }

  .quote-grid {
    grid-template-columns: repeat(6, 190px);
  }

  .trust-band {
    padding: 22px 0;
  }

  .trust-copy {
    text-align: center;
  }

  .quote-grid div,
  .quote-grid div:first-child {
    border-left: 1px solid var(--line);
  }

  .wave-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-blurb,
  .product-blurb.left,
  .product-blurb.right {
    justify-self: center;
    text-align: center;
  }

  .app-card,
  .app-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-grid article:nth-child(1),
  .service-grid article:nth-child(6),
  .news-grid article:first-child {
    grid-column: auto;
  }

  .news-grid article:first-child .news-image {
    height: 148px;
  }

  .setup-steps {
    grid-template-columns: 1fr;
  }

  .phone-mini,
  .phone-mini.large {
    justify-self: center;
  }

  .ib-art {
    min-height: 220px;
  }

  .ready-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0;
  }

  .tablet-video {
    border-width: 10px;
    border-bottom-width: 24px;
  }

  .video-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@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;
  }
}
