/* TradeTools Technology — light design system */
:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --surface: #f5f5f5;
  --surface-2: #eeeeee;
  --text: #1e2329;
  --muted: #707a8a;
  --accent: #f0b90b;
  --accent-deep: #d9a20a;
  --accent-soft: rgba(240, 185, 11, 0.14);
  --line: rgba(30, 35, 41, 0.08);
  --line-strong: rgba(30, 35, 41, 0.14);
  --on-accent: #1e2329;
  --danger: #cf304a;
  --radius: 10px;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --space: clamp(1.25rem, 3vw, 2rem);
  --container: 1120px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

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

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

.visually-hidden {
  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 {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--text);
}

.logo__img {
  display: block;
  width: auto;
  height: 2.35rem;
  max-width: min(11.5rem, 42vw);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text) !important;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--text) !important;
  background: var(--accent-soft);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(240, 185, 11, 0.10), transparent 55%),
    radial-gradient(ellipse 45% 40% at 6% 88%, rgba(30, 35, 41, 0.03), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fafafa 45%, #f5f5f5 100%);
}

.hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 1;
}

.hero--home .hero__atmosphere::after {
  opacity: 0.22;
}

.hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 35, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 35, 41, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 80%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.9fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  width: min(100% - 2 * var(--space), var(--container));
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-size: clamp(2.15rem, 4.6vw, 3.65rem);
  font-weight: 600;
}

.hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Home — command strip layout */
.hero--home {
  min-height: min(72vh, 640px);
  align-items: center;
  padding-top: 64px;
  padding-bottom: clamp(2.25rem, 6vw, 3.75rem);
}

.hero--home .hero__stage {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--space), var(--container));
  margin-inline: auto;
  max-width: 40rem;
}

.hero--home .hero__title {
  max-width: 12ch;
}

.hero--home .hero__lead {
  max-width: 32rem;
}

.home-live {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.home-live__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

.home-live__head .eyebrow {
  margin-bottom: 0.35rem;
}

.home-live__head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

.home-live__lead {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-live__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-live__grid .scwidget {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100%;
  margin: 0;
  padding: 14px 16px 12px !important;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  box-shadow: none;
  font-family: var(--font-sans) !important;
}

.home-live__grid .scwidget.scw-view-quote .scw-tick {
  font-family: var(--font-display);
}

.home-live__grid .scwidget.scw-view-quote .scw-last {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.home-live__note {
  margin: 1.15rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-stack .section__lead {
  max-width: 38rem;
}

.stack-hub {
  position: relative;
  max-width: 62rem;
  margin: 0.5rem auto 0;
  isolation: isolate;
}

.stack-hub__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stack-hub__wires {
  display: block;
  width: 100%;
  height: 100%;
}

.stack-hub__spoke {
  fill: none;
  stroke: rgba(30, 35, 41, 0.16);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.25s var(--ease), stroke-width 0.25s var(--ease), opacity 0.25s var(--ease);
}

.stack-hub__spoke--diag {
  stroke: rgba(240, 185, 11, 0.42);
  stroke-width: 1.75;
  stroke-dasharray: 5 7;
}

.stack-hub__packet {
  fill: var(--accent);
  opacity: 0.92;
}

.stack-hub__packet--ne,
.stack-hub__packet--sw,
.stack-hub__packet--nw,
.stack-hub__packet--nw-back,
.stack-hub__packet--se,
.stack-hub__packet--se-back {
  opacity: 1;
}

.stack-hub__nodes {
  position: relative;
  z-index: 1;
  min-height: clamp(32rem, 68vw, 42rem);
  margin: 0;
  padding: 0;
}

.stack-hub__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: min(11.75rem, 24vw);
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.stack-hub__node:hover,
.stack-hub__node:focus-visible {
  border-color: var(--accent);
  color: inherit;
  box-shadow: 0 12px 30px rgba(30, 35, 41, 0.07);
  outline: none;
  z-index: 2;
}

.stack-hub__node--outer {
  width: min(12.5rem, 26vw);
  border-color: rgba(240, 185, 11, 0.38);
  background:
    linear-gradient(145deg, rgba(240, 185, 11, 0.1), transparent 58%),
    var(--bg-elevated);
}

.stack-hub__node--n {
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}

.stack-hub__node--n:hover,
.stack-hub__node--n:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.stack-hub__node--s {
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
}

.stack-hub__node--s:hover,
.stack-hub__node--s:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.stack-hub__node--w {
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}

.stack-hub__node--w:hover,
.stack-hub__node--w:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.stack-hub__node--e {
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}

.stack-hub__node--e:hover,
.stack-hub__node--e:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.stack-hub__node--ne {
  top: 5%;
  right: 4%;
}

.stack-hub__node--ne:hover,
.stack-hub__node--ne:focus-visible {
  transform: translateY(-2px);
}

.stack-hub__node--sw {
  bottom: 5%;
  left: 4%;
}

.stack-hub__node--sw:hover,
.stack-hub__node--sw:focus-visible {
  transform: translateY(-2px);
}

.stack-hub__node--nw {
  top: 5%;
  left: 4%;
}

.stack-hub__node--nw:hover,
.stack-hub__node--nw:focus-visible {
  transform: translateY(-2px);
}

.stack-hub__node--se {
  bottom: 5%;
  right: 4%;
}

.stack-hub__node--se:hover,
.stack-hub__node--se:focus-visible {
  transform: translateY(-2px);
}

.stack-hub__node--core {
  left: 50%;
  top: 50%;
  width: min(14rem, 32vw);
  padding: 1.35rem 1.2rem 1.4rem;
  border-color: rgba(240, 185, 11, 0.5);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(240, 185, 11, 0.16), transparent 55%),
    var(--bg-elevated);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px rgba(240, 185, 11, 0.12),
    0 14px 36px rgba(217, 162, 10, 0.1);
}

.stack-hub__node--core:hover,
.stack-hub__node--core:focus-visible {
  transform: translate(-50%, calc(-50% - 2px));
}

.stack-hub__node--core .stack-hub__name {
  font-size: 1.35rem;
}

.stack-hub__kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stack-hub__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stack-hub__desc {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.stack-hub:has(.stack-hub__node--n:is(:hover, :focus-visible)) .stack-hub__spoke--n,
.stack-hub:has(.stack-hub__node--e:is(:hover, :focus-visible)) .stack-hub__spoke--e,
.stack-hub:has(.stack-hub__node--s:is(:hover, :focus-visible)) .stack-hub__spoke--s,
.stack-hub:has(.stack-hub__node--w:is(:hover, :focus-visible)) .stack-hub__spoke--w,
.stack-hub:has(.stack-hub__node--ne:is(:hover, :focus-visible)) .stack-hub__spoke--ne,
.stack-hub:has(.stack-hub__node--sw:is(:hover, :focus-visible)) .stack-hub__spoke--sw,
.stack-hub:has(.stack-hub__node--nw:is(:hover, :focus-visible)) .stack-hub__spoke--nw,
.stack-hub:has(.stack-hub__node--se:is(:hover, :focus-visible)) .stack-hub__spoke--se,
.stack-hub:has(.stack-hub__node--core:is(:hover, :focus-visible)) .stack-hub__spoke {
  stroke: var(--accent);
  stroke-width: 2.25;
  stroke-dasharray: none;
}

.stack-hub:has(.stack-hub__node:is(:hover, :focus-visible)) .stack-hub__spoke {
  opacity: 0.28;
}

.stack-hub:has(.stack-hub__node--n:is(:hover, :focus-visible)) .stack-hub__spoke--n,
.stack-hub:has(.stack-hub__node--e:is(:hover, :focus-visible)) .stack-hub__spoke--e,
.stack-hub:has(.stack-hub__node--s:is(:hover, :focus-visible)) .stack-hub__spoke--s,
.stack-hub:has(.stack-hub__node--w:is(:hover, :focus-visible)) .stack-hub__spoke--w,
.stack-hub:has(.stack-hub__node--ne:is(:hover, :focus-visible)) .stack-hub__spoke--ne,
.stack-hub:has(.stack-hub__node--sw:is(:hover, :focus-visible)) .stack-hub__spoke--sw,
.stack-hub:has(.stack-hub__node--nw:is(:hover, :focus-visible)) .stack-hub__spoke--nw,
.stack-hub:has(.stack-hub__node--se:is(:hover, :focus-visible)) .stack-hub__spoke--se,
.stack-hub:has(.stack-hub__node--core:is(:hover, :focus-visible)) .stack-hub__spoke {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .stack-hub__packet {
    display: none;
  }
}

.home-stack__more {
  margin: 1.35rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-rail li {
  position: relative;
  padding: 1.25rem 1.15rem 1.3rem;
  border-top: 2px solid var(--accent);
  background: var(--bg-elevated);
  border-radius: 0 0 var(--radius) var(--radius);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-rail__num {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
}

.process-rail h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.process-rail p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.home-lead {
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(240, 185, 11, 0.1), transparent 55%),
    var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.home-lead__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.home-lead__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.home-lead__copy > p {
  color: var(--muted);
  max-width: 34rem;
}

.home-lead__points {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.home-lead__points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.15rem;
  color: var(--text);
  font-size: 0.95rem;
}

.home-lead__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.45rem;
  height: 1px;
  background: var(--accent);
}

.home-lead__form .lead-form {
  margin: 0;
}

/* Lead form */
.lead-form {
  padding: 1.35rem 1.35rem 1.45rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(30, 35, 41, 0.06);
}

.lead-form__head {
  margin-bottom: 1.15rem;
}

.lead-form__title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead-form__sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lead-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field {
  display: block;
  margin-bottom: 0.75rem;
}

.field__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(112, 122, 138, 0.75);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.btn--block {
  width: 100%;
  margin-top: 0.25rem;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.lead-form__status {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
}

.lead-form__status.is-ok {
  color: var(--accent-deep);
}

.lead-form__status.is-error {
  color: var(--danger);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid transparent;
}

.btn--primary:hover {
  background: var(--accent-deep);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--accent-deep);
  color: var(--text);
  background: var(--accent-soft);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.text-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}

.section__head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

.section__lead {
  margin: 1rem 0 0;
  color: var(--muted);
}

.ecosystem .section__head {
  max-width: none;
}

.ecosystem .section__lead {
  line-height: 1.7;
}

/* Home SEO + brokers depth — images left / full copy right */
.home-depth__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.home-depth__media {
  display: grid;
  gap: 0.85rem;
}

.home-depth__shot {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.home-depth__shot--primary {
  height: clamp(320px, calc(32vw + 140px), 460px);
}

.home-depth__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(30, 35, 41, 0.06),
    inset 10px 8px 22px rgba(30, 35, 41, 0.06);
}

.home-depth__shot img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.home-depth__shot .seo-intro__placeholder {
  height: 100%;
  min-height: inherit;
}

.home-depth__copy .eyebrow {
  margin-bottom: 0.65rem;
}

.home-depth__copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.home-depth__copy h3 {
  margin: 1.75rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.home-depth__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.home-process__cta {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Home SEO intro — image left / copy right */
.seo-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.seo-intro__media,
.for-brokers__media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.seo-intro__media {
  height: clamp(430px, calc(40vw + 150px), 570px);
}

.for-brokers__media {
  height: clamp(330px, calc(40vw + 50px), 470px);
}

.seo-intro__media::after,
.for-brokers__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(30, 35, 41, 0.06),
    inset 10px 8px 22px rgba(30, 35, 41, 0.06);
}

.seo-intro__placeholder,
.for-brokers__placeholder {
  display: grid;
  place-content: center;
  gap: 0.4rem;
  height: 100%;
  min-height: inherit;
  border: 1px dashed var(--line-strong);
  background:
    linear-gradient(145deg, rgba(240, 185, 11, 0.1), transparent 55%),
    var(--surface);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.seo-intro__hint,
.for-brokers__hint {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

.seo-intro__media img,
.for-brokers__media img {
  display: block;
  width: calc(100% + 100px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.seo-intro__copy .eyebrow,
.for-brokers__copy .eyebrow {
  margin-bottom: 0.65rem;
}

.seo-intro__copy h2,
.for-brokers__copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.seo-intro__prose {
  display: grid;
  gap: 1.1rem;
}

.seo-intro__prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.seo-intro__prose strong {
  color: var(--text);
  font-weight: 600;
}

/* For brokers — copy left / image right */
.for-brokers__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.for-brokers__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Platforms */
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.platform {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.platform + .platform {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.platform h3 {
  margin: 0 0 0.65rem;
  font-size: 1.85rem;
  font-weight: 600;
}

.platform p {
  margin: 0;
  color: var(--muted);
  max-width: 22rem;
}

.platform--solo {
  max-width: 36rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform--solo p {
  max-width: 34rem;
}

/* Ecosystem */
.ecosystem {
  background: linear-gradient(180deg, transparent, rgba(245, 245, 245, 0.95) 40%, transparent);
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}

.eco-group {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
}

.eco-group h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.eco-group > p {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.eco-group ul li {
  position: relative;
  padding: 0.35rem 0 0.35rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.eco-group ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.35rem;
  height: 1px;
  background: var(--accent);
}

.eco-group ul a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.eco-group ul a:hover {
  color: var(--accent-deep);
}

/* Why */
.why__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why__list li {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.75rem 1.5rem 1.75rem 0;
}

.why__list li + li {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.why__num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why__list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.why__list p {
  margin: 0;
  color: var(--muted);
}

/* CTA */
.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(240, 185, 11, 0.16), transparent 55%),
    var(--bg-elevated);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-band__copy {
  flex: 1 1 28rem;
  max-width: 46rem;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.15;
}

.cta-band__text {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Stub */
.page-stub {
  padding: clamp(4rem, 12vh, 7rem) 0;
}

.page-stub h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-stub p {
  color: var(--muted);
  max-width: 34rem;
}

/* Inner pages */
.page-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(240, 185, 11, 0.10), transparent 55%),
    var(--bg);
}

.page-hero--404 {
  padding: 100px 0 120px;
  border-bottom: 0;
  min-height: calc(100svh - var(--header-h) - 12rem);
  display: flex;
  align-items: center;
}

.page-hero__title {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
}

.page-hero__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero__note {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero .hero__actions {
  margin-top: 1.75rem;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.sol-card {
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.sol-card:not(:nth-child(3n + 1)) {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.sol-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.sol-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Solutions: Ecosystem Around FX-GO ——— */
.eco-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.25rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  background:
    radial-gradient(ellipse 70% 80% at 95% 10%, rgba(240, 185, 11, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 90%, rgba(240, 185, 11, 0.07), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.eco-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eco-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.05rem, 4.1vw, 3.2rem);
  max-width: 14ch;
  letter-spacing: -0.03em;
}

.eco-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.eco-hero-card {
  position: relative;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(240, 185, 11, 0.7), rgba(240, 185, 11, 0.1) 50%, var(--line)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 14px 40px rgba(30, 35, 41, 0.06);
}

.eco-hero-card__badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eco-hero-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
}

.eco-hero-card__blurb {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.eco-hero-card__list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.eco-hero-card__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.45;
}

.eco-hero-card__list li:last-child {
  border-bottom: 1px solid var(--line);
}

.eco-hero-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.4rem;
  height: 1px;
  background: var(--accent);
}

.eco-hero-card__link {
  font-weight: 700;
}

.eco-orbit-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.eco-orbit-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.eco-orbit-head h2 {
  margin: 0 0 0.75rem;
}

.eco-orbit-head .section__lead {
  margin-inline: auto;
}

.eco-orbit {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.eco-orbit__ring {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(30, 35, 41, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.eco-orbit__ring--outer {
  inset: 0;
}

.eco-orbit__ring--mid {
  inset: 18%;
}

.eco-orbit__core {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(160deg, #ffe08a, var(--accent) 55%, var(--accent-deep));
  box-shadow:
    0 0 0 8px rgba(240, 185, 11, 0.15),
    0 20px 50px rgba(217, 162, 10, 0.25);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.eco-orbit__core:hover {
  transform: scale(1.04);
}

.eco-orbit__core small {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

.eco-orbit__node {
  position: absolute;
  width: min(148px, 28%);
  padding: 0.7rem 0.65rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 40px rgba(30, 35, 41, 0.06);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.eco-orbit__node:hover {
  border-color: rgba(240, 185, 11, 0.6);
}

.eco-orbit__node strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.eco-orbit__node span {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

.eco-orbit__node--1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.eco-orbit__node--1:hover {
  transform: translateX(-50%) translateY(-3px);
}

.eco-orbit__node--2 {
  top: 28%;
  right: 0;
}

.eco-orbit__node--3 {
  bottom: 18%;
  right: 8%;
}

.eco-orbit__node--4 {
  bottom: 18%;
  left: 8%;
}

.eco-orbit__node--5 {
  top: 28%;
  left: 0;
}

.eco-orbit__node--2:hover,
.eco-orbit__node--3:hover,
.eco-orbit__node--4:hover,
.eco-orbit__node--5:hover {
  transform: translateY(-3px);
}

.eco-clusters {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1rem, 3vw, 2rem);
}

.eco-cluster {
  margin-bottom: 2.75rem;
  scroll-margin-top: 5.5rem;
}

.eco-cluster:last-child {
  margin-bottom: 0;
}

.eco-cluster__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.eco-cluster__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
}

.eco-cluster__lead {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
  line-height: 1.6;
}

.eco-cluster__count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.eco-card:hover {
  border-color: rgba(240, 185, 11, 0.45);
  box-shadow: 0 14px 40px rgba(30, 35, 41, 0.06);
  transform: translateY(-2px);
}

.eco-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.2rem 1.2rem;
  color: inherit;
  text-decoration: none;
}

.eco-card__link:hover {
  color: inherit;
}

.eco-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.eco-card p {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-solutions-eco .cta-band {
  background:
    radial-gradient(ellipse 70% 120% at 10% 50%, rgba(240, 185, 11, 0.16), transparent 55%),
    var(--bg-elevated);
}

/* Small Crypto Widget strip */
.scw-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.scw-strip__grid .scwidget {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.scw-strip__note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-split h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.about-copy p {
  color: var(--muted);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.process__list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-top: 1px solid var(--line);
}

.process__list li:nth-child(even) {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.process__list li:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.process__num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

.process__list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.process__list p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.contact-info > p {
  color: var(--muted);
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin: 1.5rem 0 0;
}

.contact-channel h3,
.contact-address h3 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-sans);
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}

.contact-email {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.contact-email:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

.contact-phone {
  font-size: 0.98rem;
  color: var(--muted);
  text-decoration: none;
}

.contact-phone:hover {
  color: var(--text);
}

.contact-address {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-address p {
  margin: 0;
  color: var(--muted);
  max-width: 22rem;
  line-height: 1.55;
}

.contact-notes {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-notes li {
  position: relative;
  padding: 0.4rem 0 0.4rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.35rem;
  height: 1px;
  background: var(--accent);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.product-intro {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-intro:last-of-type {
  margin-bottom: 1.75rem;
}

.product-body-seo {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-body-seo:last-child {
  margin-bottom: 0;
}

.product-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-plan {
  padding: 1.25rem 1.3rem 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.product-plan h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.product-plan__text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-plan__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.product-plan__cta {
  margin-top: 1.15rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}

#product-lead-form {
  scroll-margin-top: 6rem;
}

.product-notice {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.product-notice__card {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.product-notice__card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.product-notice__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 48rem;
}

.product-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-pillar {
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.product-pillar h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

.product-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-module__subhead {
  margin: 2.25rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-highlight {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.product-highlight h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.product-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Featured product page (Price Feed) */
.page-hero--featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(240, 185, 11, 0.10), transparent 55%),
    radial-gradient(ellipse 55% 50% at 0% 100%, rgba(240, 185, 11, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.page-hero--featured .page-hero__title {
  max-width: 18ch;
}

.product-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.product-platform-tags li {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.page-product-featured .product-highlight-grid--dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.product-highlights__note {
  margin: 1.5rem 0 0;
  max-width: 52rem;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-product-featured .product-highlight {
  position: relative;
  padding: 1.35rem 1.25rem 1.3rem;
  border-color: transparent;
  background:
    linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
    linear-gradient(145deg, rgba(240, 185, 11, 0.55), rgba(240, 185, 11, 0.08) 45%, var(--line)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(30, 35, 41, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-product-featured .product-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(30, 35, 41, 0.08);
}

.page-product-featured .product-highlight h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
}

.page-product-featured .product-highlight h3::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.page-product-featured .product-highlight--counted {
  padding-top: 1.55rem;
  padding-right: clamp(4.75rem, 12vw, 6.5rem);
}

.page-product-featured .product-highlight--counted h3::before {
  display: none;
}

.product-highlight--counted .product-highlight__count {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  margin: 0;
  line-height: 1;
  pointer-events: none;
}

.product-highlight__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--accent-deep);
}

.page-product-featured .product-highlight--counted:hover .product-highlight__num {
  color: var(--accent);
}

.page-product-featured .product-pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-product-featured .product-pillar {
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  min-height: 100%;
}

.page-product-featured .product-pillar h3 {
  margin: 0 0 0.65rem;
}

.page-product-featured .product-plans {
  background:
    linear-gradient(180deg, transparent, rgba(240, 185, 11, 0.06) 40%, transparent);
}

.page-product-featured .product-plan {
  position: relative;
  padding: 1.6rem 1.5rem 1.55rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow: 0 14px 40px rgba(30, 35, 41, 0.06);
  overflow: hidden;
}

.page-product-featured .product-plan:first-child {
  border-color: rgba(240, 185, 11, 0.55);
  background:
    linear-gradient(165deg, rgba(240, 185, 11, 0.10), transparent 42%),
    #fff;
}

.page-product-featured .product-plan:first-child::before {
  content: "Monthly";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1e2329;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-product-featured .product-plan__price {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.page-product-featured .product-plan__cta {
  margin-top: 1.35rem;
}

.page-product-featured .product-notice__card {
  border-color: rgba(240, 185, 11, 0.35);
}

.page-product-featured .cta-band {
  background:
    radial-gradient(ellipse 70% 120% at 10% 50%, rgba(240, 185, 11, 0.2), transparent 55%),
    var(--bg-elevated);
}

.product-hero-media {
  padding: 40px 0 0;
}

.product-hero-media__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-hero-media__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.product-media-placeholder {
  display: grid;
  place-content: center;
  gap: 0.45rem;
  min-height: clamp(220px, 36vw, 420px);
  padding: 1.5rem;
  border: 1px dashed var(--line-strong);
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(240, 185, 11, 0.08), transparent 55%),
    var(--surface);
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.product-media-placeholder__hint {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.8;
  word-break: break-all;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.product-showcase:first-of-type {
  margin-top: 1.25rem;
}

.product-showcase--reverse .product-showcase__copy {
  order: 2;
}

.product-showcase--reverse .product-showcase__media {
  order: 1;
}

.product-showcase__copy .eyebrow {
  margin-bottom: 0.55rem;
}

.product-showcase__copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-showcase__copy p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-showcase__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-showcase__media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-showcase__media .product-media-placeholder {
  min-height: clamp(200px, 32vw, 360px);
  border: 0;
  border-radius: 0;
}

.product-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-audience {
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.product-audience h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.product-audience p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-prose {
  max-width: 46rem;
}

.product-dual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

.product-dual__grid--solo {
  grid-template-columns: 1fr;
}

.product-dual__grid--solo .section__head {
  max-width: none;
}

.product-dual__grid--solo .product-body-seo {
  max-width: none;
}

.product-dual__col .section__head {
  margin-bottom: 1rem;
}

.product-dual__col .product-body-seo {
  max-width: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail {
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.product-detail h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.product-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 0 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.05rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.feature-list-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.75rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 0.45rem;
  height: 1px;
  background: var(--accent);
}

.product-aside {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.product-aside .lead-form {
  margin: 0;
}

.product-aside__scw {
  width: 100%;
  min-width: 0;
}

.product-aside__scw .scwidget {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  margin: 0;
  padding: 14px 16px 12px !important;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  box-shadow: 0 10px 30px rgba(30, 35, 41, 0.05);
  font-family: var(--font-sans) !important;
}

.product-aside__scw .scwidget.scw-view-quote .scw-tick {
  font-family: var(--font-display);
}

.product-aside__scw .scwidget.scw-view-quote .scw-last {
  font-size: 1.45rem;
}

.product-aside__card {
  padding: 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 10px 30px rgba(30, 35, 41, 0.05);
}

.product-aside__title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.product-aside__card > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-aside__meta {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.site-footer__name {
  margin: 0 0 0.35rem;
  font-weight: 560;
}

.site-footer__tag,
.site-footer__address,
.site-footer__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__address {
  margin-top: 0.85rem;
  max-width: 18rem;
  line-height: 1.5;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.site-footer__label {
  margin: 0.65rem 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer__label:first-child {
  margin-top: 0;
}

.site-footer__nav a,
.site-footer__meta a {
  text-decoration: none;
  color: var(--muted);
}

.site-footer__nav a:hover,
.site-footer__meta a:hover {
  color: var(--text);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .page-product-featured .product-highlight-grid--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-product-featured .product-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .eco-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .scw-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .eco-hero__grid {
    grid-template-columns: 1fr;
  }

  .eco-orbit {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .platforms__grid,
  .ecosystem__grid,
  .sol-grid,
  .process__list {
    grid-template-columns: 1fr 1fr;
  }

  .platform + .platform {
    padding-left: 0;
    border-left: 0;
  }

  .platform:nth-child(even) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--line);
  }

  .sol-card:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .sol-card:nth-child(even) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--line);
  }

  .about-split,
  .contact-grid,
  .contact-channels,
  .product-layout,
  .product-detail-grid,
  .product-dual__grid,
  .feature-list-cols,
  .product-showcase,
  .product-audience-grid,
  .product-plan-grid,
  .product-pillar-grid,
  .product-highlight-grid,
  .page-product-featured .product-highlight-grid--dense,
  .page-product-featured .product-pillar-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase--reverse .product-showcase__copy,
  .product-showcase--reverse .product-showcase__media {
    order: unset;
  }

  .product-aside {
    position: static;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    align-items: stretch;
    padding: 64px 0;
  }

  .hero--home {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 2.5rem;
  }

  .hero--home .hero__title {
    max-width: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .home-live__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .stack-hub__stage {
    display: none;
  }

  .stack-hub__nodes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    gap: 0.75rem;
  }

  .stack-hub__node {
    position: static;
    width: auto;
    transform: none;
  }

  .stack-hub__node:hover,
  .stack-hub__node:focus-visible,
  .stack-hub__node--n:hover,
  .stack-hub__node--n:focus-visible,
  .stack-hub__node--e:hover,
  .stack-hub__node--e:focus-visible,
  .stack-hub__node--s:hover,
  .stack-hub__node--s:focus-visible,
  .stack-hub__node--w:hover,
  .stack-hub__node--w:focus-visible,
  .stack-hub__node--ne:hover,
  .stack-hub__node--ne:focus-visible,
  .stack-hub__node--sw:hover,
  .stack-hub__node--sw:focus-visible,
  .stack-hub__node--nw:hover,
  .stack-hub__node--nw:focus-visible,
  .stack-hub__node--se:hover,
  .stack-hub__node--se:focus-visible,
  .stack-hub__node--core:hover,
  .stack-hub__node--core:focus-visible {
    transform: translateY(-2px);
  }

  .stack-hub__node--core {
    grid-column: 1 / -1;
    width: auto;
    order: -2;
  }

  .stack-hub__node--ne,
  .stack-hub__node--sw,
  .stack-hub__node--nw,
  .stack-hub__node--se {
    order: -1;
  }

  .process-rail {
    grid-template-columns: 1fr 1fr;
  }

  .home-lead__grid {
    grid-template-columns: 1fr;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .home-depth__grid,
  .seo-intro__grid,
  .for-brokers__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-depth__shot--primary {
    height: 360px;
  }

  .seo-intro__media {
    height: 370px;
  }

  .for-brokers__media {
    height: 270px;
  }

  .seo-intro__media img,
  .for-brokers__media img {
    width: calc(100% + 60px);
  }

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

  .why__list li + li {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }

  .home-live__grid {
    grid-template-columns: 1fr;
  }

  .scw-strip__grid {
    grid-template-columns: 1fr;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .stack-hub__nodes {
    grid-template-columns: 1fr;
  }

  .eco-orbit__node {
    width: 118px;
    padding: 0.55rem 0.45rem;
  }

  .eco-orbit__node span {
    display: none;
  }

  .eco-hero__title {
    max-width: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    padding: 1rem var(--space) 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .platforms__grid,
  .ecosystem__grid,
  .sol-grid,
  .process__list,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .platform,
  .platform:nth-child(even),
  .platform + .platform,
  .sol-card,
  .sol-card:nth-child(even),
  .process__list li,
  .process__list li:nth-child(even) {
    padding: 1.5rem 0;
    border-left: 0;
  }

  .process__list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process__list li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .page-hero__title {
    max-width: none;
  }

  .hero__title {
    max-width: none;
  }
}
