:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-deep: #010314;
  --navy: #04063c;
  --card: #07112f;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(9, 19, 52, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --line-cyan: rgba(85, 246, 255, 0.28);
  --green: #95e601;
  --cyan: #55f6ff;
  --white: #ffffff;
  --muted: #a7b3d8;
  --red: #ff4d5e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-small: 18px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-montserrat: "Montserrat", Inter, Manrope, "Segoe UI", system-ui, sans-serif;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -12%, rgba(85, 246, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(149, 230, 1, 0.14), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #030823 44%, #010314 100%);
  color: var(--white);
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

html[lang="mk"] body,
html[lang="mk"] button,
html[lang="mk"] input,
html[lang="mk"] select,
html[lang="mk"] textarea,
html[lang="mk"] h1,
html[lang="mk"] h2,
html[lang="mk"] h3,
html[lang="mk"] .brand,
html[lang="mk"] .button,
html[lang="mk"] .eyebrow {
  font-family: var(--font-montserrat);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(85, 246, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 246, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 80%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(115deg, transparent 0 14%, rgba(85, 246, 255, 0.26) 14% 14.3%, transparent 14.3% 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px);
  background-size: 100% 100%, 4px 4px;
}

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

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

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4.85rem;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

li + li {
  margin-top: 12px;
}

li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 16px rgba(85, 246, 255, 0.42);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  border-radius: 12px;
  background: var(--green);
  color: #07112f;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(20px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(85, 246, 255, 0.11);
  color: var(--white);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.language-switcher {
  position: relative;
  min-width: max-content;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(85, 246, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(85, 246, 255, 0.1), rgba(149, 230, 1, 0.055)),
    rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 0 18px rgba(85, 246, 255, 0.08);
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-switcher[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher summary:hover,
.language-switcher summary:focus-visible {
  border-color: rgba(149, 230, 1, 0.52);
  outline: none;
}

.language-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  display: grid;
  min-width: 104px;
  padding: 6px;
  border: 1px solid rgba(85, 246, 255, 0.22);
  border-radius: 16px;
  background: rgba(3, 8, 35, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.language-switcher:not([open]) .language-dropdown-menu {
  display: none;
}

.language-switcher .language-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.language-switcher .language-link:hover,
.language-switcher .language-link:focus-visible,
.language-switcher .language-link.is-active {
  background: rgba(85, 246, 255, 0.14);
  color: var(--white);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(85, 246, 255, 0.18);
}

.desktop-language-switcher {
  position: absolute;
  top: 50%;
  right: -72px;
  z-index: 45;
  transform: translateY(-50%);
}

.mobile-language-switcher {
  display: none;
}

.nav-actions .button {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.nav-mobile-actions {
  display: none;
}

.header-demo-cta,
.nav-mobile-actions .button-secondary {
  border-color: rgba(85, 246, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(85, 246, 255, 0.12), rgba(149, 230, 1, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(85, 246, 255, 0.08), 0 0 22px rgba(85, 246, 255, 0.08);
}

.header-demo-cta:hover,
.header-demo-cta:focus-visible,
.nav-mobile-actions .button-secondary:hover,
.nav-mobile-actions .button-secondary:focus-visible {
  border-color: rgba(149, 230, 1, 0.54);
  background:
    linear-gradient(135deg, rgba(85, 246, 255, 0.16), rgba(149, 230, 1, 0.09)),
    rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  z-index: 30;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(85, 246, 255, 0.42);
  border-radius: 14px;
  background: rgba(85, 246, 255, 0.12);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), #d8ff4a);
  color: #04101a;
  box-shadow: 0 0 34px rgba(149, 230, 1, 0.2);
}

.button-secondary {
  border-color: rgba(85, 246, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.hero {
  min-height: 820px;
  padding-top: 82px;
  overflow: hidden;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(85, 246, 255, 0.05) 9.2% 9.35%, transparent 9.35% 100%),
    radial-gradient(circle at 70% 30%, rgba(85, 246, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 20% 78%, rgba(149, 230, 1, 0.1), transparent 22rem);
}

.ambient-grid::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto auto;
  width: 56%;
  height: 62%;
  opacity: 0.2;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(85, 246, 255, 0.28) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(85, 246, 255, 0.25) 28px 32px, transparent 32px 54px);
  transform: skewY(-10deg);
  mask-image: linear-gradient(to right, transparent, #000 28%, #000 80%, transparent);
}

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

.hero-copy,
.hero-visual,
.dashboard-frame,
.chart-card {
  width: 100%;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(149, 230, 1, 0.12), 0 0 24px rgba(149, 230, 1, 0.8);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.16rem;
}

.hero-actions,
.final-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span,
.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.hero-visual {
  transform: perspective(1100px) rotateX(4deg) rotateY(-8deg);
  transform-style: preserve-3d;
}

.profit-widget-visual {
  display: flex;
  justify-content: flex-end;
  transform: none;
}

.profit-widget-card {
  position: relative;
  width: min(100%, 665px);
  max-width: 665px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(85, 246, 255, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 84% 10%, rgba(149, 230, 1, 0.16), transparent 16rem),
    rgba(7, 17, 47, 0.72);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.profit-widget-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
}

.profit-widget-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.profit-widget-topline strong {
  padding: 6px 10px;
  border: 1px solid rgba(149, 230, 1, 0.26);
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.1);
  color: var(--green);
}

.trade-calculator {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

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

.calc-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.calc-field span,
.trade-side legend,
.calc-result-main span,
.calc-result-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.calc-field select,
.calc-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(85, 246, 255, 0.16);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.58);
  color: var(--white);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.calc-field select,
.calculator select {
  cursor: pointer;
  color-scheme: dark;
}

.calc-field select:focus,
.calc-field input:focus {
  border-color: rgba(85, 246, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(85, 246, 255, 0.1);
}

.calc-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.calc-field select option,
.calculator select option {
  background-color: #111827;
  color: #ffffff;
  font-weight: 700;
}

.calc-field select option:checked,
.calculator select option:checked {
  background-color: #173346;
  color: var(--green);
}

.calc-field select option:hover,
.calc-field select option:focus,
.calculator select option:hover,
.calculator select option:focus {
  background-color: #0c2638;
  color: var(--cyan);
}

.trade-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 4px;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.56);
}

.trade-side legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.trade-side label {
  min-width: 0;
  cursor: pointer;
}

.trade-side input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trade-side span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 900;
  transition: background 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.trade-side input:checked + span {
  background: linear-gradient(135deg, rgba(149, 230, 1, 0.22), rgba(85, 246, 255, 0.12));
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(149, 230, 1, 0.26);
}

.trade-side label:first-of-type input:checked + span {
  background: linear-gradient(135deg, rgba(255, 77, 94, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 77, 94, 0.26);
}

.calc-submit {
  width: 100%;
}

.calc-results {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.calc-result-main,
.calc-result-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.48);
}

.calc-result-main {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.calc-result-main strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.calc-result-main em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.calc-result-main.is-loss strong {
  color: #ff9ba4;
}

.calc-result-main.is-flat strong {
  color: var(--cyan);
}

.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
}

.calc-result-row strong {
  color: var(--white);
  text-align: right;
}

.profit-widget-note {
  position: relative;
  z-index: 2;
  margin: 14px 4px 0;
  color: #c6d0ed;
  font-size: 0.88rem;
}

.dashboard-frame {
  position: relative;
  min-height: 620px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 82% 22%, rgba(149, 230, 1, 0.18), transparent 16rem),
    rgba(7, 17, 47, 0.62);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.dashboard-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
}

.dashboard-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard-topline strong {
  padding: 6px 10px;
  border: 1px solid rgba(149, 230, 1, 0.26);
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.1);
  color: var(--green);
}

.chart-card,
.mini-card,
.glass-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.chart-main {
  position: relative;
  z-index: 2;
  min-height: 278px;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(85, 246, 255, 0.11), rgba(149, 230, 1, 0.04)),
    rgba(3, 8, 33, 0.62);
}

.chart-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.chart-heading strong {
  color: var(--cyan);
}

.candles {
  position: absolute;
  inset: auto 22px 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  height: 170px;
  gap: 12px;
}

.candles::before {
  content: "";
  position: absolute;
  inset: 20% 0 18%;
  border-top: 1px solid rgba(85, 246, 255, 0.16);
  border-bottom: 1px solid rgba(85, 246, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(85, 246, 255, 0.07), transparent),
    linear-gradient(90deg, transparent, rgba(85, 246, 255, 0.34), transparent);
}

.candles i {
  position: relative;
  display: block;
  height: var(--h);
  margin-bottom: var(--b);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--cyan), rgba(85, 246, 255, 0.28));
  box-shadow: 0 0 18px rgba(85, 246, 255, 0.38);
}

.candles i:nth-child(even) {
  background: linear-gradient(180deg, var(--green), rgba(149, 230, 1, 0.2));
  box-shadow: 0 0 18px rgba(149, 230, 1, 0.28);
}

.candles i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  bottom: -28px;
  width: 1px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.hero-modules {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  min-height: 96px;
  padding: 16px;
  border-radius: 20px;
}

.mini-card span,
.status-row span,
.results-board span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-card strong,
.status-row strong,
.results-board strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

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

.risk strong,
.risk-text strong {
  color: #ff9ba4;
}

.mascot-layer {
  position: absolute;
  right: -70px;
  bottom: -128px;
  z-index: 1;
  width: 360px;
  opacity: 0.28;
  filter: saturate(0.58) brightness(0.72) hue-rotate(142deg) drop-shadow(0 0 30px rgba(85, 246, 255, 0.28));
  transform: rotate(-7deg);
  pointer-events: none;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: -60px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 44px;
  align-items: start;
}

.two-column,
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.intro-copy {
  max-width: 680px;
  padding-top: clamp(18px, 4vw, 70px);
}

.intro-copy p:not(.eyebrow) {
  font-size: 1.08rem;
}

.founder-card {
  position: relative;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  padding: 10px;
  max-width: 380px;
  background:
    radial-gradient(circle at 24% 4%, rgba(85, 246, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 74%, rgba(149, 230, 1, 0.1), transparent 17rem),
    rgba(7, 17, 47, 0.72);
  box-shadow: var(--shadow), 0 0 38px rgba(85, 246, 255, 0.1);
}

.founder-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  pointer-events: none;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.22);
}

.founder-card img {
  width: 100%;
  height: clamp(340px, 30vw, 440px);
  border-radius: 26px;
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(1.02) contrast(1.02) brightness(0.92);
}

.copy-block,
.support-list,
.status-dashboard,
.results-board {
  border-radius: var(--radius);
  padding: 32px;
}

.copy-block p:last-child,
.section-heading p:last-child,
.feature-grid p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.wide {
  max-width: 900px;
}

.schedule-section {
  overflow: hidden;
}

.schedule-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 38px;
  align-items: center;
}

.schedule-copy {
  max-width: 570px;
}

.schedule-copy > p:not(.eyebrow):not(.schedule-subtitle) {
  font-size: 1.08rem;
}

.schedule-subtitle {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(149, 230, 1, 0.24);
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.09);
  color: var(--green);
  font-weight: 900;
}

.schedule-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.schedule-points span {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(85, 246, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce6ff;
  font-weight: 800;
}

.calendly-card {
  position: relative;
  min-height: 728px;
  overflow: hidden;
  border-radius: 32px;
  padding: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 246, 255, 0.18), transparent 19rem),
    radial-gradient(circle at 100% 20%, rgba(149, 230, 1, 0.12), transparent 17rem),
    rgba(7, 17, 47, 0.68);
}

.calendly-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px);
  background-size: 7px 7px;
}

.calendly-fallback {
  position: absolute;
  inset: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(54, 190, 194, 0.14), transparent 17rem),
    #f7fbff;
  color: #020f25;
  text-align: center;
}

.calendly-fallback strong {
  display: block;
  margin-bottom: 10px;
  color: #020f25;
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.calendly-fallback p {
  max-width: 360px;
  margin-inline: auto;
  color: #475569;
}

.calendly-card.is-calendly-loaded .calendly-fallback {
  display: none;
}

.calendly-inline-widget {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100% !important;
  overflow: hidden;
  border-radius: 24px;
  background: #f7fbff;
}

.calendly-inline-widget iframe {
  border-radius: 24px;
}

.service-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.step-card,
.pricing-card,
.rate-card,
.market-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.service-card::before,
.pricing-card::before,
.community-card::before,
.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background: radial-gradient(circle at 24% 0%, rgba(85, 246, 255, 0.18), transparent 14rem);
}

.service-card h3,
.step-card h3,
.pricing-card h3 {
  position: relative;
}

.service-card p,
.step-card p,
.pricing-card p,
.service-card a,
.pricing-card a,
.card-kicker,
.popular-badge {
  position: relative;
}

.service-card p {
  flex: 1;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(85, 246, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.service-card a:hover,
.service-card a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(85, 246, 255, 0.52);
  background: rgba(85, 246, 255, 0.1);
  outline: none;
}

.service-card.featured-card a {
  border-color: rgba(149, 230, 1, 0.28);
  background: rgba(149, 230, 1, 0.12);
}

.card-kicker,
.step-card span,
.popular-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(85, 246, 255, 0.2);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-card,
.highlighted {
  border-color: rgba(149, 230, 1, 0.3);
  background:
    linear-gradient(145deg, rgba(149, 230, 1, 0.12), rgba(85, 246, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.feature-section::before,
.schedule-section::before,
.pricing-section::before,
.rebates-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 480px;
  pointer-events: none;
  opacity: 0.26;
  background: radial-gradient(circle at 50% 50%, rgba(85, 246, 255, 0.16), transparent 32rem);
}

.discord-screenshot-frame {
  position: relative;
  margin: 0;
  max-width: 690px;
  aspect-ratio: 1.3;
  overflow: hidden;
  border-radius: 34px;
  padding: 12px;
  border-color: rgba(85, 246, 255, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 22%, rgba(149, 230, 1, 0.12), transparent 17rem),
    rgba(7, 17, 47, 0.7);
  box-shadow: var(--shadow), 0 0 46px rgba(85, 246, 255, 0.12);
  transform: perspective(1000px) rotateY(-7deg) rotateZ(-1.2deg);
  transform-origin: 42% 50%;
}

.discord-screenshot-frame::before,
.discord-screenshot-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border-radius: 24px;
  pointer-events: none;
}

.discord-screenshot-frame::before {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.13), transparent 28%, transparent 72%, rgba(85, 246, 255, 0.08)),
    radial-gradient(circle at 15% 16%, rgba(85, 246, 255, 0.16), transparent 15rem);
  mix-blend-mode: screen;
}

.discord-screenshot-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.28);
}

.discord-screenshot-frame img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: left center;
  filter: saturate(1.06) contrast(1.04) brightness(0.9);
}

.status-dashboard {
  display: grid;
  gap: 14px;
  min-height: 380px;
  align-content: center;
  background:
    linear-gradient(160deg, rgba(85, 246, 255, 0.12), rgba(149, 230, 1, 0.06)),
    rgba(7, 17, 47, 0.68);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.15);
}

.status-row strong {
  text-align: right;
}

.auto-copy-video-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  padding: 12px;
  border-color: rgba(85, 246, 255, 0.2);
  background:
    radial-gradient(circle at 16% 0%, rgba(85, 246, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 78%, rgba(149, 230, 1, 0.12), transparent 16rem),
    rgba(7, 17, 47, 0.72);
  box-shadow: var(--shadow), 0 0 46px rgba(85, 246, 255, 0.12);
  transform: perspective(1100px) rotateY(7deg) rotateZ(1.2deg);
  transform-origin: 58% 50%;
}

.auto-copy-video-frame::before,
.auto-copy-video-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border-radius: 24px;
  pointer-events: none;
}

.auto-copy-video-frame::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 72%, rgba(85, 246, 255, 0.08)),
    radial-gradient(circle at 18% 18%, rgba(85, 246, 255, 0.14), transparent 13rem);
  mix-blend-mode: screen;
}

.auto-copy-video-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 46px rgba(0, 0, 0, 0.3);
}

.auto-copy-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  object-fit: cover;
  background: #020617;
  filter: saturate(1.06) contrast(1.03) brightness(0.92);
}

.rebate-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.rate-card {
  min-height: 246px;
}

.rate-card span {
  color: var(--muted);
  font-weight: 800;
}

.rate-card strong {
  display: block;
  margin: 18px 0 4px;
  color: var(--green);
  font-size: 2.4rem;
  line-height: 1;
}

.rate-example {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #dce6ff;
  font-weight: 800;
}

.calculator {
  border-radius: var(--radius);
  padding: 28px;
}

.calculator label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
}

.calculator input,
.calculator select {
  width: 100%;
  min-height: 52px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(85, 246, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
}

.calculator select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.calculator input:focus,
.calculator select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(85, 246, 255, 0.12);
}

.calc-result {
  font-size: 1.05rem;
}

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

.risk-copy {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 77, 94, 0.55);
  color: #c6d0ed;
}

.demo-section {
  overflow: hidden;
}

.demo-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  overflow: hidden;
  border-color: rgba(85, 246, 255, 0.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 246, 255, 0.18), transparent 21rem),
    radial-gradient(circle at 92% 18%, rgba(149, 230, 1, 0.14), transparent 20rem),
    rgba(7, 17, 47, 0.72);
  box-shadow: var(--shadow), 0 0 52px rgba(85, 246, 255, 0.11);
}

.demo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px);
  background-size: 8px 8px;
}

.demo-copy,
.demo-dashboard {
  position: relative;
  z-index: 1;
}

.demo-copy > p:not(.eyebrow):not(.demo-risk-note) {
  max-width: 710px;
  font-size: 1.07rem;
}

.demo-benefits {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.demo-benefits article {
  padding: 16px;
  border: 1px solid rgba(85, 246, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.demo-benefits h3 {
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.demo-benefits p {
  margin-bottom: 0;
  color: #c8d3ef;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-risk-note {
  max-width: 620px;
  margin: 16px 0 0;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 77, 94, 0.56);
  color: #c6d0ed;
  font-size: 0.95rem;
}

.demo-dashboard {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(85, 246, 255, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
    rgba(2, 9, 30, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 0 36px rgba(85, 246, 255, 0.06);
}

.demo-dashboard-header,
.demo-dashboard-footer,
.demo-balance-card,
.demo-watchlist div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.demo-dashboard-header,
.demo-dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
}

.demo-dashboard span,
.demo-watchlist em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.demo-dashboard strong {
  color: var(--white);
}

.demo-balance-card {
  min-height: 124px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(149, 230, 1, 0.16), transparent 11rem),
    rgba(255, 255, 255, 0.055);
}

.demo-balance-card strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 2.6rem;
  line-height: 1;
}

.demo-watchlist {
  display: grid;
  gap: 10px;
}

.demo-watchlist > span {
  color: var(--cyan);
}

.demo-watchlist div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
}

.demo-watchlist em {
  text-align: right;
  font-size: 0.86rem;
}

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

.support-list span {
  min-height: 54px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

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

.market-card {
  min-height: 150px;
}

.market-card span {
  display: block;
  margin-bottom: 24px;
  font-size: 1.2rem;
  font-weight: 900;
}

.pair-chart {
  width: 100%;
  height: 76px;
  padding: 8px;
  overflow: visible;
  border: 1px solid rgba(85, 246, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(rgba(85, 246, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 246, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(85, 246, 255, 0.09), rgba(255, 255, 255, 0.02));
  background-size: 100% 18px, 28px 100%, 100% 100%;
}

.pair-chart path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(85, 246, 255, 0.46));
}

.pair-chart line {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2;
}

.pair-chart rect {
  fill: var(--green);
  rx: 2;
  filter: drop-shadow(0 0 7px rgba(149, 230, 1, 0.42));
}

.chart-gbpusd path,
.chart-us100 path {
  stroke: var(--green);
  filter: drop-shadow(0 0 8px rgba(149, 230, 1, 0.42));
}

.chart-gbpusd rect,
.chart-us100 rect {
  fill: var(--cyan);
  filter: drop-shadow(0 0 7px rgba(85, 246, 255, 0.4));
}

.results-copy {
  max-width: 620px;
}

.results-cta {
  margin-top: 22px;
  min-width: 172px;
}

.monthly-results-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 30px;
  border-color: rgba(85, 246, 255, 0.2);
  background:
    radial-gradient(circle at 16% 0%, rgba(85, 246, 255, 0.16), transparent 17rem),
    radial-gradient(circle at 92% 88%, rgba(149, 230, 1, 0.08), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 47, 0.72);
  box-shadow: var(--shadow), 0 0 44px rgba(85, 246, 255, 0.1);
}

.monthly-results-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 26%, transparent 70%, rgba(85, 246, 255, 0.06)),
    radial-gradient(circle at 18% 18%, rgba(85, 246, 255, 0.1), transparent 13rem);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.monthly-results-card > * {
  position: relative;
  z-index: 2;
}

.monthly-results-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.monthly-results-header h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.monthly-results-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.monthly-results-header > span {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(85, 246, 255, 0.22);
  border-radius: 999px;
  background: rgba(85, 246, 255, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.results-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.36);
}

.results-table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
}

.results-table-wrap th,
.results-table-wrap td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  white-space: nowrap;
}

.results-table-wrap thead th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.results-table-wrap tbody th {
  color: #ffffff;
  font-weight: 900;
}

.results-table-wrap tbody td {
  color: #dce6ff;
  font-weight: 900;
}

.results-table-wrap tbody td[data-status="positive"] {
  color: var(--green);
}

.results-table-wrap tbody td[data-status="negative"] {
  color: var(--red);
}

.results-table-wrap tbody td[data-status="empty"] {
  color: var(--muted);
}

.results-table-wrap tbody tr:last-child th,
.results-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.monthly-results-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(85, 246, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.monthly-results-note p {
  margin: 0;
  color: #dce6ff;
  font-size: 0.95rem;
}

.monthly-results-note a {
  flex: 0 0 auto;
  color: var(--cyan);
  font-weight: 900;
}

.monthly-results-note a:hover,
.monthly-results-note a:focus-visible {
  color: var(--white);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.price {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.pricing-card ul {
  position: relative;
  flex: 1;
  margin-bottom: 26px;
}

.pricing-card .button {
  position: relative;
  width: 100%;
}

.popular-badge {
  width: fit-content;
  color: var(--green);
  border-color: rgba(149, 230, 1, 0.26);
}

.community-card,
.final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  padding: 44px;
}

.final-card {
  border: 1px solid rgba(85, 246, 255, 0.22);
  background:
    radial-gradient(circle at 84% 16%, rgba(149, 230, 1, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 47, 0.7);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(85, 246, 255, 0.12);
  color: var(--cyan);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  padding: 74px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 0, rgba(85, 246, 255, 0.12), transparent 26rem),
    rgba(1, 3, 20, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 34px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid a:not(.button):not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-grid a:not(.button):not(.brand):hover {
  color: var(--white);
}

.footer-brand {
  margin-bottom: 18px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .header-cta {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .desktop-language-switcher {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 20px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 10px;
    background: rgba(3, 8, 33, 0.94);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: center;
    min-height: 46px;
  }

  .nav-links .language-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 6px;
  }

  .nav-links .language-switcher summary {
    width: 100%;
  }

  .nav-links .language-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .nav-links .language-switcher .language-link {
    min-height: 36px;
  }

  .mobile-language-switcher {
    display: inline-flex;
  }

  .nav-mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links .nav-mobile-actions .button {
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
  }

  .nav-links .nav-mobile-actions .button-primary,
  .nav-links .nav-mobile-actions .button-primary:hover,
  .nav-links .nav-mobile-actions .button-primary:focus-visible {
    color: #04101a;
  }

  .nav-links .nav-mobile-actions .button-secondary {
    color: var(--white);
  }

  .hero-grid,
  .intro-grid,
  .two-column,
  .feature-grid,
  .feature-grid.reverse,
  .schedule-grid,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .founder-card {
    justify-self: center;
    width: min(100%, 420px);
    max-width: 420px;
  }

  .hero-visual {
    transform: none;
  }

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

  .profit-widget-visual {
    justify-content: center;
  }

  .monthly-results-card {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .rebate-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 840px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 84px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 10px;
    background: rgba(3, 8, 33, 0.94);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: center;
    min-height: 46px;
  }

  .nav-links .language-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 6px;
  }

  .nav-links .language-switcher summary {
    width: 100%;
  }

  .nav-links .language-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .nav-links .language-switcher .language-link {
    min-height: 36px;
  }

  .mobile-language-switcher {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-proof span,
  .trust-strip span {
    width: 100%;
    justify-content: center;
  }

  .dashboard-frame {
    min-height: 560px;
  }

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

  .hero-modules {
    grid-template-columns: 1fr;
  }

  .mascot-layer {
    right: -78px;
    bottom: -86px;
    width: 300px;
    opacity: 0.18;
  }

  .trust-strip {
    margin-top: 24px;
  }

  .service-grid,
  .steps-grid,
  .pricing-grid,
  .rebate-layout,
  .footer-grid,
  .support-list {
    grid-template-columns: 1fr;
  }

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

  .schedule-points {
    grid-template-columns: 1fr;
  }

  .calendly-card {
    min-height: 708px;
  }

  .calendly-inline-widget {
    height: 680px !important;
  }

  .discord-screenshot-frame {
    max-width: 100%;
    transform: none;
    aspect-ratio: 1.22;
  }

  .auto-copy-video-frame {
    max-width: 100%;
    transform: none;
  }

  .monthly-results-card {
    padding: 24px;
  }

  .monthly-results-header,
  .monthly-results-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-panel {
    padding: 30px;
  }

  .demo-dashboard {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .community-card,
  .final-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--max), calc(100% - 40px));
  }

  h1 {
    font-size: 2.08rem;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .button,
  .hero-actions .button,
  .final-actions .button,
  .split-actions .button {
    width: 100%;
  }

  .hero-copy,
  .hero-lede {
    width: 100%;
    max-width: 330px;
  }

  .hero-copy,
  .hero-actions,
  .hero-proof {
    margin-inline: auto;
  }

  .dashboard-frame {
    width: 100%;
    max-width: 100%;
  }

  .hero-lede {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .chart-heading {
    display: block;
  }

  .chart-heading strong {
    display: block;
    margin-top: 4px;
  }

  .dashboard-frame,
    .profit-widget-card,
    .founder-card,
    .copy-block,
    .support-list,
    .demo-panel,
    .status-dashboard,
    .auto-copy-video-frame,
    .monthly-results-card,
    .calculator,
    .calendly-card,
    .service-card,
    .step-card,
    .pricing-card,
    .rate-card,
    .market-card {
    padding: 22px;
    border-radius: 22px;
  }

  .dashboard-frame {
    min-height: 540px;
  }

  .profit-widget-card {
    padding: 12px;
  }

  .demo-dashboard {
    padding: 14px;
    border-radius: 22px;
  }

  .demo-balance-card {
    min-height: 112px;
    padding: 18px;
  }

  .demo-balance-card strong {
    font-size: 2.18rem;
  }

  .demo-dashboard-header,
  .demo-dashboard-footer,
  .demo-watchlist div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    padding: 10px 12px;
  }

  .demo-watchlist em {
    text-align: left;
  }

  .calendly-card {
    min-height: 666px;
    padding: 8px;
  }

  .calendly-fallback {
    inset: 8px;
    border-radius: 18px;
  }

  .calendly-inline-widget {
    height: 650px !important;
    border-radius: 18px;
  }

  .profit-widget-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .calc-result-main strong {
    font-size: 1.7rem;
  }

  .chart-main {
    min-height: 230px;
    padding: 18px;
  }

  .candles {
    inset: auto 18px 24px;
    gap: 8px;
  }

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

  .status-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .status-row strong {
    text-align: left;
  }

  .discord-screenshot-frame {
    aspect-ratio: 0.78;
    padding: 8px;
    border-radius: 24px;
  }

  .discord-screenshot-frame::before,
  .discord-screenshot-frame::after {
    inset: 8px;
    border-radius: 18px;
  }

  .discord-screenshot-frame img {
    border-radius: 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;
  }
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  background: rgba(85, 246, 255, 0.14);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(85, 246, 255, 0.16);
}

.live-trading-page .live-hero {
  min-height: 760px;
}

.live-trading-page .nav {
  position: relative;
}

.live-trading-page .live-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
}

.live-trading-page .live-hero h1 {
  max-width: 760px;
  font-size: 4.15rem;
}

.micro-copy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.risk-note {
  max-width: 720px;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(149, 230, 1, 0.52);
  color: rgba(214, 221, 242, 0.88);
  font-size: 0.92rem;
}

.live-room-visual {
  display: flex;
  justify-content: flex-end;
  transform: perspective(1100px) rotateX(3deg) rotateY(-7deg);
}

.live-room-dashboard {
  position: relative;
  width: min(100%, 680px);
  padding: 18px;
  overflow: hidden;
  border-color: rgba(85, 246, 255, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.18), transparent 19rem),
    radial-gradient(circle at 92% 18%, rgba(149, 230, 1, 0.14), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 47, 0.74);
  box-shadow: var(--shadow), 0 0 48px rgba(85, 246, 255, 0.12);
}

.live-room-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 1px, transparent 1px);
  background-size: 7px 7px;
}

.live-room-topbar,
.live-room-shell,
.live-room-header,
.live-room-modules,
.results-board-header,
.context-row {
  position: relative;
  z-index: 1;
}

.live-room-topbar,
.live-room-header,
.results-board-header,
.context-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-room-topbar {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.live-room-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.live-room-topbar strong,
.active-badge {
  padding: 6px 10px;
  border: 1px solid rgba(149, 230, 1, 0.28);
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.1);
  color: var(--green);
  font-size: 0.82rem;
}

.live-pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(85, 246, 255, 0.12), 0 0 24px rgba(85, 246, 255, 0.75);
  animation: livePulse 1600ms ease-in-out infinite;
}

.live-room-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 486px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(2, 6, 23, 0.52);
}

.live-room-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding-top: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.sidebar-dot {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-dot.active {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 20px rgba(85, 246, 255, 0.3);
}

.live-room-main {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.panel-label,
.room-module span,
.results-board-header span,
.context-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.live-room-header strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.live-chart-window {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(85, 246, 255, 0.14);
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(85, 246, 255, 0.1), transparent),
    rgba(2, 6, 23, 0.58);
}

.live-candle-chart {
  position: absolute;
  inset: auto 18px 22px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  height: 184px;
  gap: 12px;
}

.live-candle-chart::before {
  content: "";
  position: absolute;
  inset: 10% 0 18%;
  border-top: 1px solid rgba(85, 246, 255, 0.14);
  border-bottom: 1px solid rgba(85, 246, 255, 0.14);
  background:
    linear-gradient(180deg, transparent 0 49%, rgba(85, 246, 255, 0.16) 49% 50%, transparent 50%),
    linear-gradient(90deg, rgba(85, 246, 255, 0.2), transparent 28%, transparent 72%, rgba(149, 230, 1, 0.16));
}

.live-candle-chart i {
  position: relative;
  display: block;
  height: var(--h);
  margin-bottom: var(--b);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--cyan), rgba(85, 246, 255, 0.22));
  box-shadow: 0 0 18px rgba(85, 246, 255, 0.32);
}

.live-candle-chart i:nth-child(2n) {
  background: linear-gradient(180deg, var(--green), rgba(149, 230, 1, 0.22));
  box-shadow: 0 0 18px rgba(149, 230, 1, 0.3);
}

.live-candle-chart i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  bottom: -24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

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

.room-module {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.room-module strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
}

.risk-module strong {
  color: #ff9ba4;
}

.live-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: -46px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.live-trust-strip article {
  min-height: 102px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.live-trust-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  line-height: 1.25;
}

.live-trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
}

.answer-card {
  padding: 32px;
  border-color: rgba(149, 230, 1, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(149, 230, 1, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.05);
}

.answer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.live-card-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.live-info-card,
.process-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
}

.live-info-card::before,
.process-card::before,
.membership-panel::before,
.related-service-card::before,
.results-context-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background: radial-gradient(circle at 20% 0%, rgba(85, 246, 255, 0.2), transparent 15rem);
}

.live-info-card h3,
.live-info-card p,
.process-card h3,
.process-card p,
.process-card span {
  position: relative;
}

.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--cyan);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  outline: none;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 28px;
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  width: 50%;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--white);
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: 1.12rem;
}

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

.comparison-table th + th,
.comparison-table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.comparison-table td:nth-child(2) {
  color: rgba(255, 255, 255, 0.86);
}

.live-market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.live-market-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
}

.live-market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 45%, rgba(85, 246, 255, 0.12) 45% 46%, transparent 46%),
    radial-gradient(circle at 70% 0%, rgba(85, 246, 255, 0.18), transparent 12rem);
}

.live-market-card span,
.live-market-card h3,
.live-market-card p {
  position: relative;
}

.live-market-card span {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  align-items: center;
  border: 1px solid rgba(85, 246, 255, 0.2);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.featured-market {
  grid-column: span 2;
  border-color: rgba(149, 230, 1, 0.28);
}

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

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(149, 230, 1, 0.28);
  border-radius: 14px;
  background: rgba(149, 230, 1, 0.11);
  color: var(--green);
  font-weight: 900;
}

.warning-card {
  margin-top: 16px;
  padding: 28px;
  border-color: rgba(255, 77, 94, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 77, 94, 0.14), transparent 17rem),
    rgba(255, 255, 255, 0.04);
}

.warning-card h3 {
  color: #ffb7bf;
}

.membership-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 32px;
  overflow: hidden;
  padding: 36px;
  border-color: rgba(85, 246, 255, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(149, 230, 1, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 47, 0.72);
}

.membership-copy,
.pricing-panel,
.membership-checklist {
  position: relative;
  z-index: 1;
}

.membership-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.pricing-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-panel h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 2.45rem;
}

.pricing-panel > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 1.2rem;
}

.pricing-panel .button {
  width: 100%;
  margin-top: 8px;
}

.results-context-board {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.16), transparent 18rem),
    rgba(7, 17, 47, 0.72);
}

.results-board-header {
  margin-bottom: 18px;
}

.results-board-header strong {
  color: var(--green);
}

.context-row {
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.context-row + .context-row {
  margin-top: 12px;
}

.context-row strong {
  max-width: 56%;
  color: var(--white);
  text-align: right;
}

.related-service-section {
  padding-top: 48px;
}

.related-service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
}

.related-service-card > * {
  position: relative;
}

.live-final-card {
  border-color: rgba(149, 230, 1, 0.24);
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.72);
    opacity: 0.72;
  }
}

@media (max-width: 1120px) {
  .live-trading-page .nav-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 0;
  }

  .live-trading-page .live-hero-grid,
  .answer-grid,
  .membership-panel {
    grid-template-columns: 1fr;
  }

  .live-room-visual {
    justify-content: center;
    transform: none;
  }

  .live-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .live-card-grid,
  .audience-grid,
  .live-market-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-market {
    grid-column: auto;
  }

  .pricing-panel {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

@media (max-width: 840px) {
  .live-trading-page .nav-toggle {
    top: 12px;
    right: 0;
  }

  .live-trading-page .live-hero h1 {
    font-size: 3.2rem;
  }

  .live-room-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .live-room-sidebar {
    display: none;
  }

  .live-room-modules,
  .membership-checklist,
  .related-service-card {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    min-width: 580px;
  }
}

@media (max-width: 560px) {
  .live-trading-page .live-hero h1 {
    font-size: 2.08rem;
  }

  .live-room-dashboard,
  .membership-panel,
  .related-service-card,
  .answer-card,
  .warning-card,
  .results-context-board {
    padding: 22px;
    border-radius: 22px;
  }

  .live-room-main {
    padding: 12px;
  }

  .live-room-topbar,
  .live-room-header,
  .context-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .live-chart-window {
    min-height: 236px;
    padding: 14px;
  }

  .live-candle-chart {
    inset: auto 14px 20px;
    height: 146px;
    gap: 8px;
  }

  .live-trust-strip,
  .live-card-grid,
  .audience-grid,
  .live-market-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .live-trust-strip {
    padding: 12px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .comparison-table tr {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .comparison-table tbody tr:last-child {
    border-bottom: 0;
  }

  .comparison-table td {
    width: 100%;
    padding: 12px 16px;
    border: 0;
  }

  .comparison-table td + td {
    border-left: 0;
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--cyan);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .pricing-panel h3 {
    font-size: 2rem;
  }

  .context-row strong {
    max-width: none;
    text-align: left;
  }
}

.trading-profile-page .profile-setup-hero {
  min-height: 760px;
}

.trading-profile-page .profile-setup-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
}

.trading-profile-page .profile-setup-hero h1 {
  max-width: 720px;
  font-size: 4.35rem;
}

.trading-profile-page .risk-note {
  max-width: 670px;
}

.setup-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 246, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 100% 24%, rgba(149, 230, 1, 0.13), transparent 18rem),
    rgba(7, 17, 47, 0.72);
}

.setup-dashboard::before,
.notice-card::before,
.profile-step-card::before,
.security-panel::before,
.portal-panel::before,
.video-guide-card::before,
.support-mini-card::before,
.profile-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(85, 246, 255, 0.14) 52.2% 52.55%, transparent 52.7% 100%),
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.16), transparent 16rem);
}

.setup-dashboard > *,
.notice-card > *,
.profile-step-card > *,
.security-panel > *,
.portal-panel > *,
.video-guide-card > *,
.support-mini-card > *,
.profile-final-card > * {
  position: relative;
}

.setup-dashboard-header,
.setup-dashboard-footer,
.setup-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.setup-dashboard-header {
  margin-bottom: 24px;
}

.setup-dashboard-header h2 {
  margin: 0;
  font-size: 1.65rem;
}

.shield-mark,
.notice-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(85, 246, 255, 0.26);
  border-radius: 18px;
  background: rgba(85, 246, 255, 0.1);
  color: var(--cyan);
  box-shadow: 0 0 28px rgba(85, 246, 255, 0.14);
}

.shield-mark svg,
.notice-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.setup-progress {
  height: 12px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.setup-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 22px rgba(149, 230, 1, 0.28);
}

.setup-step-list {
  display: grid;
  gap: 12px;
}

.setup-step {
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.setup-step span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.setup-step strong {
  color: var(--white);
  text-align: right;
}

.setup-step.is-active {
  border-color: rgba(149, 230, 1, 0.32);
  background: rgba(149, 230, 1, 0.08);
}

.setup-dashboard-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-dashboard-footer span {
  color: var(--muted);
  font-weight: 800;
}

.setup-dashboard-footer strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.16);
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.notice-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 28px;
  overflow: hidden;
  border-color: rgba(85, 246, 255, 0.26);
  border-radius: 34px;
  padding: 34px;
}

.broker-info-card {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: start;
}

.notice-card .button {
  margin-top: 8px;
}

.broker-info-copy p:not(.eyebrow) {
  max-width: 720px;
}

.broker-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.broker-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cyan);
  font-weight: 900;
  line-height: 1.25;
}

.broker-secondary-link:hover,
.broker-secondary-link:focus-visible {
  color: var(--white);
  outline: none;
}

.broker-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.broker-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 999px;
  background: rgba(85, 246, 255, 0.055);
  color: #dce6ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.broker-trust-panel {
  display: grid;
  gap: 13px;
  border-radius: 26px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.12), transparent 14rem),
    rgba(0, 0, 0, 0.16);
}

.broker-trust-panel h3 {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.trust-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  line-height: 1.25;
}

.trust-row p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(85, 246, 255, 0.24);
  border-radius: 14px;
  background: rgba(85, 246, 255, 0.09);
  color: var(--cyan);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.broker-info-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c6d1ef;
  font-size: 0.94rem;
}

.security-checklist,
.security-panel,
.portal-panel,
.support-mini-card {
  border-radius: 26px;
  padding: 26px;
}

.security-checklist {
  background: rgba(0, 0, 0, 0.16);
}

.security-checklist h3,
.security-panel h3,
.portal-panel h3,
.video-checklist h3 {
  font-size: 1.25rem;
}

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

.profile-step-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: var(--radius);
  padding: 26px;
}

.profile-step-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(85, 246, 255, 0.2);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  border-radius: 24px;
  padding: 18px;
  text-align: center;
}

.resource-strip span {
  margin-right: 6px;
  color: var(--white);
  font-weight: 900;
}

.resource-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce6ff;
  font-weight: 800;
}

.resource-strip a:hover,
.resource-strip a:focus-visible,
.legal-link-grid a:hover,
.legal-link-grid a:focus-visible {
  border-color: rgba(85, 246, 255, 0.46);
  color: var(--white);
  outline: none;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.security-copy {
  max-width: 680px;
}

.highlight-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(149, 230, 1, 0.22);
  border-radius: 18px;
  background: rgba(149, 230, 1, 0.08);
  color: #e9ffd3;
  font-weight: 900;
}

.eligibility-card {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  border-color: rgba(255, 77, 94, 0.24);
  border-left: 4px solid rgba(255, 77, 94, 0.72);
  border-radius: 34px;
  padding: 38px;
}

.eligibility-card .small-disclaimer,
.page-footer-disclaimer p {
  color: #c6d1ef;
  font-size: 0.96rem;
}

.legal-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 20px;
}

.legal-link-grid a {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce6ff;
  font-weight: 900;
}

.legal-link-grid a span {
  color: var(--cyan);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.video-guide-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  border-color: rgba(85, 246, 255, 0.24);
  border-radius: 34px;
  padding: 34px;
}

.video-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(rgba(85, 246, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 246, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(85, 246, 255, 0.18), transparent 12rem),
    rgba(1, 3, 20, 0.72);
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.32), 0 0 32px rgba(85, 246, 255, 0.08);
}

.play-mark {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(85, 246, 255, 0.36);
  border-radius: 999px;
  background: rgba(85, 246, 255, 0.12);
  box-shadow: 0 0 34px rgba(85, 246, 255, 0.18);
}

.play-mark::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 24px 0 0 29px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--green);
}

.video-placeholder span {
  align-self: end;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(149, 230, 1, 0.24);
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-mini-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: 1.35rem;
}

.page-footer-disclaimer {
  margin-bottom: 42px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-footer-disclaimer p {
  max-width: 1040px;
  margin: 0;
}

@media (max-width: 1120px) {
  .trading-profile-page .profile-setup-hero-grid,
  .notice-card,
  .split-panel,
  .video-guide-card {
    grid-template-columns: 1fr;
  }

  .trading-profile-page .profile-setup-hero h1 {
    font-size: 4rem;
  }

  .profile-steps-grid,
  .legal-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .trading-profile-page .profile-setup-hero {
    min-height: auto;
  }

  .trading-profile-page .profile-setup-hero h1 {
    font-size: 3.05rem;
  }

  .setup-dashboard,
  .notice-card,
  .eligibility-card,
  .video-guide-card {
    padding: 28px;
    border-radius: 28px;
  }

  .profile-steps-grid,
  .legal-link-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .trading-profile-page .hero-copy,
  .trading-profile-page .hero-lede {
    max-width: none;
  }

  .trading-profile-page .profile-setup-hero h1 {
    font-size: 2.16rem;
  }

  .setup-dashboard,
  .notice-card,
  .broker-trust-panel,
  .security-checklist,
  .security-panel,
  .portal-panel,
  .eligibility-card,
  .video-guide-card,
  .support-mini-card,
  .profile-step-card {
    padding: 22px;
    border-radius: 22px;
  }

  .setup-dashboard-header,
  .setup-dashboard-footer,
  .setup-step {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .setup-step strong {
    text-align: left;
  }

  .resource-strip,
  .resource-strip a {
    width: 100%;
  }

  .resource-strip a {
    justify-content: center;
  }

  .broker-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .broker-actions .button,
  .broker-actions .broker-secondary-link,
  .broker-badges,
  .broker-badges span {
    width: 100%;
  }

  .broker-actions .broker-secondary-link,
  .broker-badges span {
    justify-content: center;
    text-align: center;
  }

  .trust-row {
    padding: 12px;
  }

  .video-placeholder {
    min-height: 230px;
  }
}

.auto-copy-page .auto-copy-hero {
  min-height: 760px;
}

.auto-copy-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 52px;
}

.auto-copy-page .auto-copy-hero h1 {
  max-width: 780px;
  font-size: 4.25rem;
}

.auto-copy-dashboard {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(85, 246, 255, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.18), transparent 17rem),
    radial-gradient(circle at 100% 18%, rgba(149, 230, 1, 0.14), transparent 16rem),
    rgba(7, 17, 47, 0.74);
  box-shadow: var(--shadow), 0 0 48px rgba(85, 246, 255, 0.12);
}

.auto-copy-dashboard::before,
.auto-info-card::before,
.flow-card::before,
.numbered-card::before,
.setup-note::before,
.performance-card::before,
.auto-copy-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(85, 246, 255, 0.14) 52.2% 52.55%, transparent 52.7% 100%),
    radial-gradient(circle at 18% 0%, rgba(85, 246, 255, 0.16), transparent 16rem);
}

.auto-copy-dashboard > *,
.auto-info-card > *,
.flow-card > *,
.numbered-card > *,
.setup-note > *,
.performance-card > *,
.auto-copy-final-card > * {
  position: relative;
}

.dashboard-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.dashboard-topline span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.dashboard-topline strong {
  display: inline-flex;
  min-height: 32px;
  margin-top: 8px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(149, 230, 1, 0.28);
  border-radius: 999px;
  background: rgba(149, 230, 1, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.pause-toggle {
  flex: 0 0 auto;
  width: 70px;
  height: 38px;
  padding: 4px;
  border: 1px solid rgba(85, 246, 255, 0.28);
  border-radius: 999px;
  background: rgba(85, 246, 255, 0.1);
}

.pause-toggle span {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 22px rgba(149, 230, 1, 0.32);
}

.auto-copy-status-list {
  display: grid;
  gap: 12px;
}

.auto-copy-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.auto-copy-status-item span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.auto-copy-status-item strong {
  color: var(--white);
  text-align: right;
}

.auto-benefit-grid,
.setup-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.auto-info-card,
.flow-card,
.numbered-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
}

.auto-info-card {
  min-height: 230px;
}

.section-risk-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: #c6d1ef;
  text-align: center;
}

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

.flow-card {
  min-height: 250px;
}

.flow-card:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(85, 246, 255, 0.32);
  border-radius: 999px;
  background: #07112f;
  color: var(--cyan);
  font-weight: 900;
  transform: translateY(-50%);
}

.flow-card span,
.numbered-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(149, 230, 1, 0.28);
  border-radius: 14px;
  background: rgba(149, 230, 1, 0.11);
  color: var(--green);
  font-weight: 900;
}

.performance-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 36px;
  overflow: hidden;
  padding: 36px;
  border-color: rgba(85, 246, 255, 0.22);
  border-radius: 34px;
}

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.pricing-highlights span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(149, 230, 1, 0.24);
  border-radius: 18px;
  background: rgba(149, 230, 1, 0.08);
  color: #e9ffd3;
  font-weight: 900;
  text-align: center;
}

.setup-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.numbered-card {
  min-height: 285px;
}

.numbered-card .text-link {
  margin-top: 8px;
}

.setup-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(149, 230, 1, 0.22);
  border-radius: 28px;
}

.setup-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: 1.28rem;
}

.auto-calendly-card {
  min-height: 0;
}

.auto-copy-final-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 42px;
}

.auto-final-aside {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: stretch;
  padding: 24px;
  border: 1px solid rgba(85, 246, 255, 0.16);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.14);
}

.auto-final-aside .final-actions {
  justify-content: stretch;
}

.auto-final-aside .button {
  flex: 1 1 220px;
}

.cta-mini-panel {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
}

.cta-mini-panel span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.cta-mini-panel strong {
  color: var(--white);
  text-align: right;
}

.auto-related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: -42px;
  margin-bottom: 46px;
}

.auto-related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce6ff;
  font-weight: 800;
}

.auto-related-links a:hover,
.auto-related-links a:focus-visible {
  border-color: rgba(85, 246, 255, 0.46);
  color: var(--white);
  outline: none;
}

@media (max-width: 1120px) {
  .auto-copy-hero-grid,
  .performance-card,
  .setup-note,
  .auto-copy-final-card {
    grid-template-columns: 1fr;
  }

  .auto-copy-dashboard {
    max-width: 680px;
    margin-inline: auto;
  }

  .auto-benefit-grid,
  .copy-flow,
  .setup-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-card:not(:last-child)::after {
    display: none;
  }

  .auto-final-aside .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .auto-copy-page .auto-copy-hero {
    min-height: auto;
  }

  .auto-copy-page .auto-copy-hero h1 {
    font-size: 3.05rem;
  }

  .pricing-highlights {
    grid-template-columns: 1fr;
  }

  .auto-calendly-card {
    min-height: 0;
  }

  .auto-calendly-card .calendly-inline-widget {
    height: 650px !important;
  }
}

@media (max-width: 560px) {
  .auto-copy-page .hero-copy,
  .auto-copy-page .hero-lede {
    max-width: none;
  }

  .auto-copy-page .auto-copy-hero h1 {
    font-size: 2.16rem;
  }

  .auto-benefit-grid,
  .copy-flow,
  .setup-card-grid {
    grid-template-columns: 1fr;
  }

  .auto-copy-dashboard,
  .auto-info-card,
  .flow-card,
  .numbered-card,
  .performance-card,
  .setup-note {
    padding: 22px;
    border-radius: 22px;
  }

  .dashboard-topline,
  .auto-copy-status-item,
  .cta-mini-panel span {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .auto-copy-status-item strong,
  .cta-mini-panel strong {
    text-align: left;
  }

  .pause-toggle {
    align-self: flex-start;
  }

  .auto-calendly-card {
    min-height: 0;
    padding: 8px;
  }

  .auto-calendly-card .calendly-inline-widget {
    height: 620px !important;
  }

  .auto-final-aside,
  .cta-mini-panel {
    min-width: 0;
  }

  .auto-related-links {
    align-items: stretch;
    flex-direction: column;
  }

.auto-related-links a {
    justify-content: center;
  }
}

.legal-page .site-header {
  background: rgba(2, 6, 23, 0.88);
}

.legal-hero {
  min-height: auto;
  padding-top: 148px;
  padding-bottom: 46px;
}

.legal-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.legal-shell h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  color: var(--white);
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.legal-updated,
.legal-placeholder-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
}

.legal-placeholder-note {
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--lime);
}

.legal-section {
  padding-top: 24px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-toc,
.legal-content {
  border: 1px solid rgba(85, 246, 255, 0.14);
  background: linear-gradient(145deg, rgba(19, 29, 56, 0.94), rgba(9, 16, 33, 0.96));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
}

.legal-toc h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.legal-toc a,
.footer-link-button {
  color: var(--muted);
  font: inherit;
}

.legal-toc a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-toc a:hover,
.legal-toc a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--cyan);
  outline: none;
}

.legal-content {
  min-width: 0;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 28px;
  color: #c7d2ee;
}

.legal-content h2,
.legal-content h3 {
  color: var(--white);
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

.legal-content h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-content h2:first-child,
.legal-content p:first-child + h2 {
  margin-top: 0;
}

.legal-content h3 {
  margin: 26px 0 10px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 20px;
  padding-left: 22px;
}

.legal-content code {
  border-radius: 8px;
  padding: 0.08em 0.38em;
  background: rgba(85, 246, 255, 0.1);
  color: #ecfeff;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid rgba(85, 246, 255, 0.14);
  border-radius: 18px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(4, 10, 27, 0.72);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--cyan);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-link-button {
  display: inline-flex;
  width: max-content;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: min(620px, calc(100vw - 44px));
  padding: 20px;
  border: 1px solid rgba(85, 246, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 15, 33, 0.98), rgba(22, 34, 65, 0.98));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.44);
  color: var(--muted);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-modal h2,
.cookie-modal h3 {
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", Sora, Manrope, "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

.cookie-banner p {
  margin: 10px 0 16px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 44px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(1, 5, 16, 0.72);
}

.cookie-modal-panel {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(85, 246, 255, 0.22);
  border-radius: 26px;
  background: #091225;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.52);
  color: var(--muted);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cookie-close {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(85, 246, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.cookie-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-choice p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(85, 246, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: 0.18s ease;
}

.cookie-slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: 0.18s ease;
}

.cookie-switch input:checked + .cookie-slider {
  background: var(--lime);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(24px);
  background: #031019;
}

.cookie-switch input:disabled + .cookie-slider {
  cursor: not-allowed;
  opacity: 0.72;
}

.calendly-consent {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.calendly-consent .button {
  min-height: 42px;
}

@media (max-width: 920px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .legal-hero {
    padding-top: 118px;
  }

  .legal-content,
  .legal-toc,
  .cookie-modal-panel {
    border-radius: 20px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .cookie-choice {
    grid-template-columns: 1fr;
  }
}
