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

:root {
  --black: #010203;
  --graphite: #05070a;
  --charcoal: #0d131b;
  --panel: rgba(11, 14, 19, 0.78);
  --panel-strong: rgba(15, 19, 26, 0.94);
  --line: rgba(201, 209, 217, 0.16);
  --line-gold: rgba(214, 178, 94, 0.42);
  --gold: #d6b25e;
  --gold-bright: #f2d483;
  --silver: #c9d1d9;
  --white: #f8fafc;
  --muted: #a8b0bc;
  --green: #5ad15f;
  --red: #ef6b6b;
  --blue: #7cb7ff;
  --radius: 8px;
  --max: 1240px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 12%, rgba(214, 178, 94, 0.055), transparent 25%),
    radial-gradient(circle at 18% 30%, rgba(201, 209, 217, 0.035), transparent 24%),
    linear-gradient(180deg, #010203 0%, #05070a 42%, #010203 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(214, 178, 94, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 209, 217, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  background-image:
    radial-gradient(circle at 20% 68%, rgba(214, 178, 94, 0.045) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 22%, rgba(201, 209, 217, 0.045) 0 1px, transparent 2px);
  background-size: 56px 56px, 84px 84px;
  opacity: 0.62;
  z-index: -3;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(1, 2, 3, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 226px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
}

.brand-mark {
  display: grid;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark span:first-child {
  color: var(--gold-bright);
}

.brand-mark span:last-child {
  margin-top: 7px;
  color: var(--silver);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: rgba(248, 250, 252, 0.8);
  font-size: 15px;
}

.menu a {
  position: relative;
  padding: 10px 0;
}

.menu a:hover,
.menu a.active {
  color: var(--gold-bright);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(218, 181, 89, 0.48);
  border-radius: 8px;
  background: rgba(16, 18, 22, 0.78);
  color: var(--gold-bright);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-weight: 750;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 212, 131, 0.8);
  background: rgba(214, 178, 94, 0.08);
}

.btn.gold {
  color: #161008;
  background: linear-gradient(135deg, #f5dc96 0%, #c99635 100%);
  box-shadow: 0 16px 40px rgba(214, 178, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.hero {
  position: relative;
  padding: 58px 0 48px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.09);
}

.ecosystem-hero {
  background: #010203;
}

.hero.large {
  min-height: auto;
  display: grid;
  align-items: center;
  background: #000;
}

.hero.large .hero-grid {
  min-height: clamp(520px, 62vh, 680px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 6.4vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.silver-text,
.gold-text {
  display: inline-block;
}

h1 .silver-text,
h1 .gold-text {
  display: block;
}

.silver-text {
  background: linear-gradient(180deg, #ffffff 0%, #a9b1bc 55%, #f4f7fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-text {
  background: linear-gradient(180deg, #fff2bd 0%, #d6a846 48%, #8d641d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  max-width: 700px;
  color: rgba(248, 250, 252, 0.76);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.72;
}

.subhead {
  color: var(--silver);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
}

.hero-actions,
.cta-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(640px, 100%);
  aspect-ratio: 1.2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.24) 0%, transparent 56%),
    radial-gradient(circle, rgba(255, 255, 255, 0.11) 0%, transparent 40%);
  filter: blur(20px);
  transform: translateY(56px);
}

.logo-stage {
  position: relative;
  width: min(610px, 100%);
  display: grid;
  place-items: center;
}

.logo-stage img {
  position: relative;
  width: min(500px, 92%);
  height: auto;
  transform: translateY(-68px);
  z-index: 2;
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 28px rgba(214, 178, 94, 0.16));
}

.pedestal {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: min(560px, 94%);
  height: 72px;
  transform: translateX(-50%);
  z-index: 1;
  border: 1px solid rgba(214, 178, 94, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(242, 212, 131, 0.32), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.14));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.62), inset 0 1px 12px rgba(242, 212, 131, 0.18);
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title {
  max-width: 760px;
}

.centered-title {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered-title .eyebrow {
  justify-content: center;
}

.section-title h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.section-title p {
  margin-bottom: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

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

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

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

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

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

.card,
.metric,
.panel {
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 212, 131, 0.78);
  background:
    linear-gradient(145deg, rgba(214, 178, 94, 0.08), rgba(255, 255, 255, 0.015)),
    var(--panel-strong);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), 0 0 34px rgba(214, 178, 94, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 35%, rgba(242, 212, 131, 0.14) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 180ms ease, transform 260ms ease;
}

.card:hover::before {
  opacity: 1;
  transform: translateX(34%);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.08);
  font-size: 18px;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.icon-svg svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card:hover .icon {
  color: #fff0b4;
  border-color: rgba(242, 212, 131, 0.82);
  box-shadow: 0 0 24px rgba(214, 178, 94, 0.18);
  transform: translateY(-1px);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.card p,
.panel p,
.muted {
  color: rgba(248, 250, 252, 0.68);
}

.card p {
  margin-bottom: 0;
}

.learn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(214, 178, 94, 0.34);
  border-radius: 6px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.card:hover .learn {
  color: #161008;
  border-color: rgba(242, 212, 131, 0.72);
  background: linear-gradient(135deg, rgba(245, 220, 150, 0.96), rgba(201, 150, 53, 0.9));
}

.static-card:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(214, 178, 94, 0.035)),
    var(--panel);
  box-shadow: none;
}

.static-card:hover::before {
  opacity: 0;
  transform: translateX(-140%);
}

.static-card:hover .icon {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.45);
  box-shadow: none;
  transform: none;
}

.ecosystem-static-card:hover .learn {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.34);
  background: transparent;
}

.ecosystem-static-card .learn:hover {
  color: #161008;
  border-color: rgba(242, 212, 131, 0.72);
  background: linear-gradient(135deg, rgba(245, 220, 150, 0.96), rgba(201, 150, 53, 0.9));
}

.ecosystem-static-card .icon-svg svg {
  width: 23px;
  height: 23px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 0;
  max-width: 650px;
  margin-top: 30px;
}

.feature-row.tradoo-row {
  grid-template-columns: repeat(6, minmax(86px, 1fr));
  max-width: 820px;
}

.mini {
  min-height: 94px;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(201, 209, 217, 0.14);
}

.mini:last-child {
  border-right: 0;
}

.mini .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  font-size: 14px;
}

.mini span {
  display: block;
  color: rgba(248, 250, 252, 0.84);
  font-size: 13px;
  line-height: 1.35;
}

.tradoo-row .mini {
  min-height: 112px;
  padding: 16px 12px;
}

.tradoo-row .mini .icon {
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.tradoo-row .mini span {
  font-size: 12px;
  font-weight: 700;
}

.metric {
  padding: 22px;
}

.metric small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-size: clamp(24px, 3vw, 34px);
}

.metric.red strong {
  color: var(--red);
}

.metric.gold strong {
  color: var(--gold-bright);
}

.portfolio-card {
  border-top-width: 3px;
}

.portfolio-card.safe {
  border-top-color: rgba(73, 222, 128, 0.78);
}

.portfolio-card.balanced {
  border-top-color: rgba(242, 212, 131, 0.82);
}

.portfolio-card.growth {
  border-top-color: rgba(249, 115, 22, 0.78);
}

.portfolio-card.safe .icon {
  color: var(--green);
  border-color: rgba(73, 222, 128, 0.45);
}

.portfolio-card.growth .icon {
  color: #ffb86b;
  border-color: rgba(249, 115, 22, 0.45);
}

.portfolio-options-grid .portfolio-card .learn {
  color: #161008;
  border-color: rgba(242, 212, 131, 0.72);
  background: linear-gradient(135deg, rgba(245, 220, 150, 0.96), rgba(201, 150, 53, 0.9));
}

.portfolio-options-grid .portfolio-card .learn:hover {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.34);
  background: transparent;
}

.portfolio-options-grid .portfolio-card:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: none;
}

.portfolio-options-grid .portfolio-card.safe:hover {
  border-top-color: rgba(73, 222, 128, 0.78);
}

.portfolio-options-grid .portfolio-card.balanced:hover {
  border-top-color: rgba(242, 212, 131, 0.82);
}

.portfolio-options-grid .portfolio-card.growth:hover {
  border-top-color: rgba(249, 115, 22, 0.78);
}

.portfolio-options-grid .portfolio-card:hover::before {
  opacity: 0;
  transform: translateX(-140%);
}

.portfolio-options-grid .portfolio-card:hover .icon {
  box-shadow: none;
  transform: none;
}

.portfolio-options-grid .portfolio-card.safe:hover .icon {
  color: var(--green);
  border-color: rgba(73, 222, 128, 0.45);
}

.portfolio-options-grid .portfolio-card.balanced:hover .icon {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.44);
}

.portfolio-options-grid .portfolio-card.growth:hover .icon {
  color: #ffb86b;
  border-color: rgba(249, 115, 22, 0.45);
}

.portfolio-hero-cards {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.portfolio-hero {
  background: #000;
}

.portfolio-hero .hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
}

.portfolio-hero-visual {
  position: relative;
  width: 100%;
  margin-left: auto;
  isolation: isolate;
}

.portfolio-hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 2% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.2), transparent 66%);
  filter: blur(42px);
}

.portfolio-hero-visual img {
  display: block;
  width: min(100%, 840px);
  height: auto;
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}

.portfolio-hero-card {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) minmax(150px, auto);
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 145px;
  padding: 24px 32px 24px 42px;
  border: 1px solid rgba(214, 178, 94, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(214, 178, 94, 0.025)),
    var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.portfolio-hero-card img {
  flex: 0 0 auto;
  width: 140px;
  height: 116px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(214, 178, 94, 0.24));
}

.portfolio-hero-card h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 22px;
}

.portfolio-hero-card p {
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
}

.portfolio-performance {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 150px;
  padding-left: 26px;
  border-left: 1px solid rgba(248, 250, 252, 0.18);
  text-align: right;
}

.portfolio-performance span,
.portfolio-performance small {
  color: rgba(248, 250, 252, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-performance strong {
  color: var(--gold-bright);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.portfolio-hero-card.safe .portfolio-performance strong {
  color: #57d13c;
  text-shadow: 0 0 20px rgba(73, 222, 128, 0.18);
}

.portfolio-hero-card.balanced .portfolio-performance strong {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(242, 212, 131, 0.18);
}

.portfolio-hero-card.growth .portfolio-performance strong {
  color: #ff6a1f;
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.18);
}

.portfolio-hero-card.safe {
  border-left: 3px solid rgba(73, 222, 128, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 26px rgba(73, 222, 128, 0.06);
}

.portfolio-hero-card.balanced {
  border-left: 3px solid rgba(242, 212, 131, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 26px rgba(242, 212, 131, 0.07);
}

.portfolio-hero-card.growth {
  border-left: 3px solid rgba(249, 115, 22, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 26px rgba(249, 115, 22, 0.07);
}

.portfolio-visual-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(214, 178, 94, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 28%, rgba(242, 212, 131, 0.24), transparent 55%),
    rgba(25, 25, 22, 0.88);
  box-shadow: 0 0 28px rgba(214, 178, 94, 0.16);
}

.portfolio-visual-icon::before,
.portfolio-visual-icon::after {
  content: "";
  position: absolute;
}

.portfolio-visual-icon.shield {
  border-color: rgba(73, 222, 128, 0.48);
}

.portfolio-visual-icon.shield::before {
  inset: 12px 16px 13px;
  border: 3px solid var(--green);
  border-top-width: 5px;
  border-radius: 16px 16px 20px 20px;
  transform: perspective(40px) rotateX(8deg);
}

.portfolio-visual-icon.shield::after {
  left: 21px;
  top: 25px;
  width: 17px;
  height: 9px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.portfolio-visual-icon.scale::before {
  left: 16px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-top: 3px solid var(--gold-bright);
  border-left: 3px solid var(--gold-bright);
  border-right: 3px solid var(--gold-bright);
}

.portfolio-visual-icon.scale::after {
  left: 13px;
  bottom: 13px;
  width: 32px;
  height: 3px;
  background: var(--gold-bright);
  box-shadow: 0 -12px 0 rgba(242, 212, 131, 0.72);
}

.portfolio-visual-icon.arrow::before {
  left: 13px;
  bottom: 17px;
  width: 34px;
  height: 24px;
  border-left: 4px solid #ffb86b;
  border-bottom: 4px solid #ffb86b;
  transform: skew(-20deg);
}

.portfolio-visual-icon.arrow::after {
  right: 10px;
  top: 16px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #ffb86b;
  border-right: 4px solid #ffb86b;
  transform: rotate(8deg);
}

.portfolio-specs {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.portfolio-specs span {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 209, 217, 0.1);
}

.portfolio-specs small {
  color: rgba(242, 212, 131, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-specs strong {
  color: rgba(248, 250, 252, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.portfolio-live-access {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
}

.portfolio-live-access img {
  width: 82px;
  height: 82px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.portfolio-live-access .learn {
  margin-top: 0;
  white-space: nowrap;
}

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

.portfolio-options-grid,
.allocation-table-wrap {
  margin-top: 34px;
}

.portfolio-hero .hybrid-hero-title {
  text-transform: uppercase;
  max-width: 660px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 0.98;
}

.portfolio-hero .hybrid-hero-title .silver-text,
.portfolio-hero .hybrid-hero-title .gold-text {
  display: block;
}

.portfolio-hero .hybrid-hero-title .gold-text {
  margin-top: 6px;
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.02;
}

.portfolio-hero .lead {
  max-width: 620px;
  line-height: 1.68;
}

.portfolio-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(214, 178, 94, 0.18);
  border-bottom: 1px solid rgba(214, 178, 94, 0.12);
}

.portfolio-steps > div {
  min-height: 190px;
  padding: 28px 26px;
  border-right: 1px solid rgba(201, 209, 217, 0.1);
}

.portfolio-steps > div:last-child {
  border-right: 0;
}

.portfolio-steps span {
  display: block;
  margin-bottom: 18px;
  color: rgba(242, 212, 131, 0.76);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.portfolio-steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.16;
}

.portfolio-steps p {
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
  font-size: 16px;
}

.diversify-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.diversify-copy h2,
.tech-strip-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.diversify-copy p,
.tech-strip-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.tech-strip-reversed .tech-strip-copy {
  justify-self: end;
}

.diversify-points {
  display: grid;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.diversify-points > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.diversify-points > div:last-child {
  border-bottom: 0;
}

.diversify-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: rgba(242, 212, 131, 0.78);
  background: rgba(214, 178, 94, 0.08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.diversify-points strong {
  display: block;
  grid-column: 2;
  margin-bottom: 3px;
  color: var(--gold-bright);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.diversify-points p {
  grid-column: 2;
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
  font-size: 16px;
}

.tech-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.tech-suite-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.tech-suite-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(circle at 50% 50%, rgba(214, 178, 94, 0.14), transparent 58%);
  filter: blur(22px);
  opacity: 0.78;
  pointer-events: none;
}

.tech-suite-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 720px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 80px rgba(0, 0, 0, 0.42));
}

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

.tech-rail > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.tech-rail > div:last-child,
.tech-rail > div:nth-last-child(2) {
  border-bottom-color: transparent;
}

.tech-rail span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 178, 94, 0.42);
  border-radius: 9px;
  background: rgba(214, 178, 94, 0.09);
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 900;
}

.tech-rail strong {
  display: block;
  grid-column: 2;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 18px;
}

.tech-rail p {
  grid-column: 2;
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.table-note {
  margin: 18px 0 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 14px;
}

.table th.safe-col {
  color: var(--green);
  background: rgba(73, 222, 128, 0.09);
}

.table th.balanced-col {
  color: var(--gold-bright);
  background: rgba(92, 162, 255, 0.08);
}

.table th.growth-col {
  color: #ffb86b;
  background: rgba(249, 115, 22, 0.09);
}

.compact-card {
  min-height: 220px;
}

.portfolio-visual-icon.search::before {
  left: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  border: 3px solid var(--gold-bright);
  border-radius: 50%;
}

.portfolio-visual-icon.search::after {
  right: 14px;
  bottom: 14px;
  width: 18px;
  height: 3px;
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.portfolio-visual-icon.allocation::before {
  inset: 14px;
  border-radius: 50%;
  background: conic-gradient(var(--gold-bright) 0 40%, rgba(73, 222, 128, 0.78) 40% 68%, rgba(255, 255, 255, 0.5) 68% 100%);
}

.portfolio-visual-icon.allocation::after {
  inset: 22px;
  border-radius: 50%;
  background: #15130f;
}

.portfolio-visual-icon.link::before,
.portfolio-visual-icon.link::after {
  width: 24px;
  height: 14px;
  border: 3px solid var(--gold-bright);
  border-radius: 12px;
  transform: rotate(-28deg);
}

.portfolio-visual-icon.link::before {
  left: 10px;
  top: 18px;
}

.portfolio-visual-icon.link::after {
  right: 10px;
  bottom: 18px;
}

.portfolio-visual-icon.screen::before {
  inset: 12px 10px 18px;
  border: 3px solid var(--gold-bright);
  border-radius: 4px;
}

.portfolio-visual-icon.screen::after {
  left: 18px;
  right: 18px;
  bottom: 12px;
  height: 3px;
  background: var(--gold-bright);
}

.step-icon {
  display: block;
  margin-bottom: 18px;
}

.tech-grid {
  gap: 12px;
}

.tech-card {
  min-height: 210px;
  padding: 22px;
}

.tech-card .icon {
  margin-bottom: 18px;
}

.tech-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.choice-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.22);
  border-bottom: 1px solid rgba(201, 209, 217, 0.08);
}

.choice-copy h2,
.audience-band h2,
.note-band h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}

.choice-copy p,
.audience-band p,
.note-band p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.choice-options {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(214, 178, 94, 0.28);
}

.choice-options > div {
  padding: 24px 0 24px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.choice-options > div:last-child {
  border-bottom: 0;
}

.choice-options span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.choice-options strong {
  display: block;
  max-width: 620px;
  margin-bottom: 16px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 20px;
  line-height: 1.38;
}

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

.workflow-step {
  min-height: 170px;
  padding: 26px 26px 28px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 178, 94, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.workflow-step:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.workflow-step small {
  display: block;
  margin-bottom: 14px;
  color: rgba(242, 212, 131, 0.76);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.workflow-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.workflow-step:nth-child(odd) strong {
  color: var(--green);
}

.workflow-step span {
  color: rgba(248, 250, 252, 0.66);
}

.audience-band,
.note-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
  padding: 42px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.22);
}

.audience-band > div + div,
.note-band > div + div {
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid rgba(201, 209, 217, 0.1);
}

.audience-band .actions,
.note-band .actions {
  margin-top: 26px;
}

.note-band {
  border-bottom: 1px solid rgba(201, 209, 217, 0.08);
}

.future-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.22);
  border-bottom: 1px solid rgba(201, 209, 217, 0.08);
}

.future-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.future-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.future-strip p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 250, 252, 0.66);
  font-size: 16px;
}

.client-voice {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 0%, rgba(214, 178, 94, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 7, 10, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 34px 110px rgba(0, 0, 0, 0.32);
}

.voice-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.voice-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.voice-stat {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold-bright);
  background: rgba(0, 0, 0, 0.28);
}

.voice-stat strong {
  color: var(--gold-bright);
  font-size: 44px;
  line-height: 1;
}

.voice-stat span {
  max-width: 360px;
  color: rgba(248, 250, 252, 0.72);
  font-weight: 700;
}

.voice-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 12%, rgba(242, 212, 131, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(214, 178, 94, 0.16), rgba(255, 255, 255, 0.025) 45%, rgba(0, 0, 0, 0.16));
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 26px;
  color: rgba(242, 212, 131, 0.28);
  font-size: 116px;
  font-weight: 900;
  line-height: 1;
}

.voice-panel p {
  position: relative;
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 850;
  line-height: 1.18;
}

.voice-meta span,
.voice-meta small {
  display: block;
}

.voice-meta span {
  color: var(--gold-bright);
  font-weight: 850;
}

.voice-meta small {
  margin-top: 6px;
  color: rgba(248, 250, 252, 0.58);
  font-size: 13px;
}

.voice-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.14);
}

.voice-points div {
  padding: 22px;
  background: rgba(3, 5, 8, 0.66);
}

.voice-points span {
  display: block;
  margin-bottom: 14px;
  color: rgba(242, 212, 131, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.voice-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
}

.voice-points p {
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
}

.option-hero {
  border-bottom: 1px solid rgba(214, 178, 94, 0.12);
}

.centered-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.centered-intro h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.centered-intro .lead {
  max-width: 820px;
}

.centered-actions {
  justify-content: center;
}

.ecosystem-showcase {
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46), 0 0 70px rgba(214, 178, 94, 0.08);
}

.ecosystem-showcase img,
.visual-split-option img,
.image-first-option img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-split-option {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.ecosystem-balanced-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.ecosystem-hero {
  padding: clamp(34px, 5vw, 58px) 0;
}

.ecosystem-balanced-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.ecosystem-image-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ecosystem-image-hero > img {
  display: block;
  width: min(100%, 1040px);
  max-height: 620px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42), 0 0 60px rgba(214, 178, 94, 0.08);
}

.ecosystem-hero-copy {
  display: grid;
  justify-items: center;
  max-width: 980px;
}

.ecosystem-hero-copy h1 {
  max-width: 900px;
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.ecosystem-hero-copy .lead {
  max-width: 860px;
  margin: 0;
  text-align: center;
}

.ecosystem-hero-copy .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.ecosystem-intro h2,
.ecosystem-users h2,
.ecosystem-use h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.ecosystem-intro h2 {
  max-width: 560px;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.08;
}

.ecosystem-intro p,
.ecosystem-users p,
.ecosystem-use p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.ecosystem-intro > div:first-child p {
  max-width: 540px;
}

.ecosystem-benefits {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.18);
}

.ecosystem-benefits div {
  display: grid;
  grid-template-columns: 52px minmax(120px, 0.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(9, 12, 16, 0.82);
}

.ecosystem-benefits span,
.ecosystem-product-rail span {
  color: rgba(242, 212, 131, 0.72);
  font-weight: 850;
  letter-spacing: 0.1em;
}

.ecosystem-benefits strong {
  color: var(--white);
  font-size: 22px;
}

.ecosystem-benefits p {
  font-size: 15px;
}

.ecosystem-centered-head {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.ecosystem-centered-head h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.brand-section-title {
  text-transform: uppercase;
}

.brand-section-title .silver-text,
.brand-section-title .gold-text {
  display: block;
}

.ecosystem-centered-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.ecosystem-card-grid {
  padding: 14px;
  border: 1px solid rgba(201, 209, 217, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.5);
}

.ecosystem-user-cards {
  padding: 0;
  border: 0;
  background: transparent;
}

.audience-card-simple {
  min-height: 190px;
  padding: 28px;
}

.audience-card-simple h3 {
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-size: 24px;
}

.audience-card-simple:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: none;
}

.audience-card-simple:hover::before {
  opacity: 0;
}

.audience-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.audience-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.audience-copy p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.audience-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(214, 178, 94, 0.18);
  border-bottom: 1px solid rgba(214, 178, 94, 0.12);
}

.audience-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.audience-item:last-child {
  border-bottom: 0;
}

.audience-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 4px 0 0;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.audience-item h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 24px;
}

.audience-item p {
  grid-column: 2;
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
}

.ecosystem-product-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(201, 209, 217, 0.1);
  border-radius: var(--radius);
  background: rgba(201, 209, 217, 0.1);
}

.ecosystem-product-rail a {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 7, 10, 0.78);
  transition: background 180ms ease, transform 180ms ease;
}

.ecosystem-product-rail a:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 178, 94, 0.12), transparent 38%),
    rgba(12, 15, 20, 0.92);
}

.ecosystem-product-rail strong {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 21px;
}

.ecosystem-product-rail p {
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
}

.ecosystem-users {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid rgba(214, 178, 94, 0.2);
}

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

.user-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.5fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.user-list div:first-child {
  border-top: 1px solid rgba(201, 209, 217, 0.1);
}

.user-list strong {
  color: var(--gold-bright);
  font-size: 18px;
}

.user-list span {
  color: rgba(248, 250, 252, 0.66);
}

.ecosystem-use {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.2);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.18);
}

.ecosystem-use > div {
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 178, 94, 0.1), transparent 36%),
    rgba(8, 11, 15, 0.88);
}

.ecosystem-use .btn {
  margin-top: 28px;
}

.products-hero {
  padding: clamp(44px, 6vw, 78px) 0;
  background: #000;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.products-hero-grid h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 0.98;
}

.products-hero-grid .lead {
  max-width: 620px;
  line-height: 1.66;
}

.products-hero-image {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.products-hero-image::before {
  content: "";
  position: absolute;
  inset: 9% 7% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.18), transparent 62%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 46%);
  filter: blur(28px);
  opacity: 0.82;
  pointer-events: none;
}

.products-hero-image img {
  position: relative;
  display: block;
  width: min(112%, 920px);
  max-width: none;
  max-height: min(78vh, 720px);
  height: auto;
  margin-left: -4%;
  object-fit: contain;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.68));
}

.performance-hero {
  padding: clamp(44px, 6vw, 78px) 0;
  background: #000;
}

.performance-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
}

.performance-hero-grid h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 0.98;
  text-transform: uppercase;
}

.performance-hero-grid h1 .performance-title-word {
  font-size: clamp(38px, 3.8vw, 56px);
}

.performance-hero-grid .lead {
  max-width: 620px;
  line-height: 1.66;
}

.performance-hero-image {
  position: relative;
  overflow: visible;
  width: 100%;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.performance-hero-image::before {
  content: "";
  position: absolute;
  inset: 10% 8% 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.18), transparent 62%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 46%);
  filter: blur(30px);
  opacity: 0.82;
  pointer-events: none;
}

.performance-hero-image img {
  position: relative;
  display: block;
  width: min(100%, 940px);
  max-width: 100%;
  max-height: min(78vh, 700px);
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.68));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-composite: intersect;
}

.brain-hero {
  padding: clamp(44px, 6vw, 78px) 0;
  background: #000;
}

.brain-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.brain-hero-grid h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 0.98;
  text-transform: uppercase;
}

.brain-hero-grid .lead {
  max-width: 620px;
  line-height: 1.66;
}

.brain-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 520px;
  isolation: isolate;
}

.brain-orbit::before,
.brain-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.brain-orbit::before {
  inset: 9% 8%;
  border: 1px solid rgba(214, 178, 94, 0.22);
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.16), transparent 58%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 42%);
  filter: blur(8px);
  opacity: 0.78;
}

.brain-orbit::after {
  width: min(78%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 178, 94, 0.22);
  box-shadow:
    inset 0 0 80px rgba(214, 178, 94, 0.08),
    0 0 70px rgba(214, 178, 94, 0.08);
}

.brain-core {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(62%, 340px);
  padding: 38px 28px;
  border: 1px solid rgba(214, 178, 94, 0.42);
  border-radius: 50%;
  aspect-ratio: 1;
  align-content: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(242, 212, 131, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(6, 7, 9, 0.94);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.62),
    0 0 58px rgba(214, 178, 94, 0.14);
}

.brain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(214, 178, 94, 0.46);
  border-radius: 24px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.1);
}

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

.brain-core strong {
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
}

.brain-core span {
  color: rgba(248, 250, 252, 0.62);
  font-weight: 700;
}

.orbit-pill {
  position: absolute;
  z-index: 3;
  min-width: 120px;
  padding: 12px 18px;
  border: 1px solid rgba(214, 178, 94, 0.36);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 10, 14, 0.92);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
  text-align: center;
  font-weight: 900;
}

.orbit-pill.terminal { top: 7%; left: 50%; transform: translateX(-50%); }
.orbit-pill.manager { right: 4%; top: 36%; }
.orbit-pill.pulse { right: 18%; bottom: 10%; }
.orbit-pill.activity { left: 18%; bottom: 10%; }
.orbit-pill.analyzer { left: 4%; top: 36%; }

.brain-benefit-list,
.brain-workflow-steps {
  display: grid;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.brain-benefit-list > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.brain-benefit-list > div:last-child {
  border-bottom: 0;
}

.brain-benefit-list span,
.brain-workflow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brain-benefit-list strong,
.brain-workflow-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.14;
}

.brain-benefit-list strong {
  grid-column: 2;
  align-self: end;
  margin-bottom: 4px;
}

.brain-benefit-list p,
.brain-workflow-steps p {
  margin: 0;
  color: rgba(248, 250, 252, 0.66);
  font-size: 17px;
  line-height: 1.58;
}

.brain-benefit-list p {
  grid-column: 2;
}

.brain-product-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.brain-product-map a {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brain-product-map a::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 35%, rgba(242, 212, 131, 0.14) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 180ms ease, transform 260ms ease;
}

.brain-product-map a:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.24);
  box-shadow: none;
}

.brain-product-map a:hover::before {
  opacity: 0;
  transform: translateX(-120%);
}

.brain-product-map .icon {
  position: relative;
  margin-bottom: 22px;
}

.brain-product-map .icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brain-product-map .icon svg * {
  fill: none;
  stroke: currentColor;
}

.brain-product-map strong {
  position: relative;
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 21px;
}

.brain-product-map p {
  position: relative;
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.brain-workflow-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.brain-workflow-band h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.brain-workflow-band > div > p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.brain-workflow-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 0;
  gap: 12px;
}

.brain-workflow-steps > div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 178, 94, 0.1), transparent 34%),
    rgba(10, 13, 18, 0.76);
}

.brain-workflow-steps span {
  margin-bottom: 18px;
}

.brain-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  background: transparent;
}

.brain-note h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.brain-note p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.66;
}

.terminal-hero {
  padding: clamp(50px, 6.8vw, 88px) 0;
  background: #000;
}

.terminal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
}

.terminal-hero-grid h1 {
  max-width: 660px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 0.98;
  text-transform: uppercase;
}

.terminal-hero-grid h1.analyzer-hero-title {
  font-size: clamp(38px, 3.85vw, 56px);
  max-width: 620px;
}

.terminal-hero-grid .lead {
  max-width: 620px;
  line-height: 1.66;
}

.terminal-hero-image {
  position: relative;
  overflow: visible;
  width: 100%;
  margin-left: auto;
  isolation: isolate;
}

.terminal-hero-image::before {
  content: "";
  position: absolute;
  inset: 9% 5% 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.18), transparent 62%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 46%);
  filter: blur(34px);
  opacity: 0.74;
  pointer-events: none;
}

.terminal-hero-image img {
  position: relative;
  display: block;
  width: min(100%, 940px);
  max-width: 100%;
  max-height: min(78vh, 720px);
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.68));
  -webkit-mask-image: radial-gradient(ellipse 84% 76% at 52% 52%, #000 0 58%, rgba(0, 0, 0, 0.78) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 84% 76% at 52% 52%, #000 0 58%, rgba(0, 0, 0, 0.78) 72%, transparent 100%);
}

.product-detail-hero {
  background: #000;
}

.product-panel-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  isolation: isolate;
}

.product-panel-image::before {
  content: "";
  position: absolute;
  width: min(78%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.18), transparent 62%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 48%);
  filter: blur(32px);
  opacity: 0.86;
  pointer-events: none;
}

.product-panel-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 430px);
  height: auto;
  border: 1px solid rgba(214, 178, 94, 0.22);
  border-radius: 2px;
  background: #050a11;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.68),
    0 0 58px rgba(214, 178, 94, 0.11);
}

.pulse-panel-image img {
  width: min(100%, 420px);
}

.terminal-benefit-list {
  display: grid;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.terminal-benefit-list > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.terminal-benefit-list > div:last-child {
  border-bottom: 0;
}

.terminal-benefit-list span,
.terminal-workflow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.terminal-benefit-list strong,
.terminal-workflow-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.14;
}

.terminal-benefit-list strong {
  grid-column: 2;
  align-self: end;
  margin-bottom: 4px;
}

.terminal-benefit-list p,
.terminal-workflow-list p {
  margin: 0;
  color: rgba(248, 250, 252, 0.66);
  font-size: 17px;
  line-height: 1.58;
}

.terminal-benefit-list p {
  grid-column: 2;
}

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

.terminal-feature-grid article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.terminal-feature-grid h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 21px;
}

.terminal-feature-grid p {
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.terminal-svg-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.terminal-svg-icon svg * {
  fill: none;
  stroke: currentColor;
}

.terminal-workflow-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.terminal-workflow-band h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.terminal-workflow-band > div > p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.66;
}

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

.terminal-workflow-list > div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 178, 94, 0.1), transparent 34%),
    rgba(10, 13, 18, 0.76);
}

.terminal-workflow-list span {
  margin-bottom: 18px;
}

.terminal-brain-strip {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.terminal-brain-strip h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.terminal-brain-strip p {
  margin: 0;
  max-width: 850px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.66;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.section-split h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.section-split p {
  max-width: 640px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.performance-review-list {
  display: grid;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.performance-review-list > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.performance-review-list > div:last-child {
  border-bottom: 0;
}

.performance-review-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.performance-review-list strong {
  display: block;
  grid-column: 2;
  margin-bottom: 3px;
  color: var(--gold-bright);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.14;
}

.performance-review-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
  font-size: 16px;
  line-height: 1.58;
}

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

.performance-placeholder {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
}

.mini-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-placeholder h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
}

.performance-placeholder p {
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
  font-size: 16px;
}

.performance-data-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.performance-data-band h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.performance-data-band p {
  max-width: 640px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.performance-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(214, 178, 94, 0.22);
}

.performance-data-grid div {
  min-height: 130px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.performance-data-grid div:nth-child(odd) {
  border-right: 1px solid rgba(201, 209, 217, 0.1);
}

.performance-data-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.performance-data-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 22px;
}

.performance-data-grid span {
  display: block;
  color: rgba(248, 250, 252, 0.64);
  font-size: 15px;
  line-height: 1.55;
}

.product-architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.product-architecture-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.product-architecture-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.architecture-flow {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 178, 94, 0.12), transparent 44%),
    rgba(12, 15, 20, 0.64);
}

.architecture-node {
  width: 100%;
  max-width: 300px;
  padding: 18px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: 12px;
  background: rgba(5, 7, 10, 0.72);
  text-align: center;
}

.architecture-node.brain {
  max-width: 380px;
  border-color: rgba(242, 212, 131, 0.46);
  box-shadow: 0 0 40px rgba(214, 178, 94, 0.09);
}

.architecture-node span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border: 1px solid rgba(214, 178, 94, 0.42);
  border-radius: 9px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.09);
  font-weight: 900;
}

.architecture-node strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.architecture-node p {
  margin: 6px 0 0;
  color: rgba(248, 250, 252, 0.62);
}

.architecture-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.architecture-arrow {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(242, 212, 131, 0), rgba(242, 212, 131, 0.7), rgba(242, 212, 131, 0));
}

.core-product-grid {
  margin-top: 34px;
}

.core-product-card {
  min-height: 100%;
}

.core-product-card h3 {
  font-size: 25px;
}

.supporting-tool-grid {
  margin-top: 30px;
}

.supporting-tool-card {
  min-height: auto;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(214, 178, 94, 0.32);
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-benefit {
  display: block;
  margin-top: 18px;
  color: rgba(242, 212, 131, 0.88);
  font-size: 16px;
  line-height: 1.45;
}

.product-points {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 15px;
  line-height: 1.45;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(214, 178, 94, 0.4);
}

.product-structure,
.supporting-tools-split,
.product-future {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.product-structure-copy h2,
.supporting-tools-copy h2,
.product-future-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.product-structure-copy p,
.supporting-tools-copy p,
.product-future-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.product-structure-list {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.product-structure-list > div {
  padding: 24px 0 24px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.product-structure-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-structure-list ul,
.product-future-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-structure-list li,
.product-future-list li {
  color: rgba(248, 250, 252, 0.76);
}

.product-structure-list > p {
  margin: 0;
  padding: 22px 0 0 34px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.supporting-tool-list {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.supporting-tool-list .supporting-tool-card {
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.supporting-tool-list .supporting-tool-card:last-child {
  border-bottom: 0;
}

.supporting-tool-card h3 {
  margin: 0;
}

.supporting-tool-card .tool-svg-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.core-product-card .product-svg-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supporting-tool-card .product-badge {
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.supporting-tool-card p {
  margin-bottom: 18px;
  color: rgba(248, 250, 252, 0.68);
}

.core-product-grid .core-product-card .learn,
.supporting-tool-list .supporting-tool-card .learn {
  color: #161008;
  border-color: rgba(242, 212, 131, 0.72);
  background: linear-gradient(135deg, rgba(245, 220, 150, 0.96), rgba(201, 150, 53, 0.9));
}

.core-product-grid .core-product-card .learn:hover,
.supporting-tool-list .supporting-tool-card .learn:hover {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.34);
  background: transparent;
}

.core-product-grid .core-product-card:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: none;
}

.core-product-grid .core-product-card:hover::before {
  opacity: 0;
  transform: translateX(-140%);
}

.core-product-grid .core-product-card:hover .icon {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.44);
  box-shadow: none;
  transform: none;
}

.supporting-tool-list .supporting-tool-card,
.supporting-tool-list .supporting-tool-card::before,
.supporting-tool-list .supporting-tool-card .icon {
  transition: none;
}

.supporting-tool-list .supporting-tool-card:hover {
  transform: none;
  box-shadow: none;
}

.supporting-tool-list .supporting-tool-card:hover::before {
  opacity: 0;
  transform: translateX(-140%);
}

.supporting-tool-list .supporting-tool-card:hover .icon {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.44);
  background: rgba(214, 178, 94, 0.08);
  box-shadow: none;
  transform: none;
}

.product-choice-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(214, 178, 94, 0.18);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.product-choice-rows > div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.product-choice-rows > div:nth-child(odd) {
  border-right: 1px solid rgba(201, 209, 217, 0.1);
}

.product-choice-rows > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.product-choice-rows span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-choice-rows strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.16;
}

.product-choice-rows p {
  grid-column: 2;
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
  font-size: 16px;
  line-height: 1.6;
}

.product-future-list {
  display: grid;
  gap: 24px;
  padding-left: 34px;
  border-left: 1px solid rgba(214, 178, 94, 0.24);
}

.product-future-list ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.product-future-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(201, 209, 217, 0.1);
  color: var(--white);
  font-weight: 800;
}

.product-future-list p {
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
  line-height: 1.65;
}

.product-future-list strong {
  color: var(--gold-bright);
}

.product-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid rgba(214, 178, 94, 0.2);
  border-bottom: 1px solid rgba(201, 209, 217, 0.08);
}

.product-guide h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.product-guide p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.guide-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.18);
}

.guide-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  background: rgba(9, 12, 16, 0.84);
}

.guide-list strong {
  color: var(--white);
}

.guide-list span {
  color: rgba(242, 212, 131, 0.78);
  font-weight: 800;
}

.comparison-wrap {
  padding: 14px;
  border: 1px solid rgba(201, 209, 217, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.5);
}

.product-comparison-wrap {
  overflow-x: auto;
  padding: 0;
  border-color: rgba(214, 178, 94, 0.22);
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 178, 94, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(20, 24, 30, 0.94), rgba(5, 7, 10, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.26);
}

.product-comparison-wrap .table {
  min-width: 760px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-comparison-wrap .table th,
.product-comparison-wrap .table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.product-comparison-wrap .table th {
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-comparison-wrap .table td {
  color: rgba(248, 250, 252, 0.72);
}

.product-comparison-wrap .table td:first-child {
  color: var(--white);
  font-weight: 800;
}

.product-comparison-wrap .table td:nth-child(2) {
  color: rgba(242, 212, 131, 0.82);
  font-weight: 800;
}

.product-comparison-wrap .table tr:nth-child(odd):not(:first-child) {
  background: rgba(255, 255, 255, 0.018);
}

.product-comparison-wrap .table tr:not(:first-child):hover {
  background: rgba(214, 178, 94, 0.045);
}

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

.landing-hero {
  min-height: auto;
  padding: clamp(39px, 5.5vw, 69px) 0 clamp(47px, 6.9vw, 85px);
  background: #000;
  display: flex;
  align-items: center;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
  overflow: hidden;
}

.landing-hero-grid h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 0.98;
}

.hybrid-hero-title {
  margin-bottom: 22px;
}

.hybrid-hero-title .gold-text {
  margin-top: 6px;
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.02;
}

.landing-hero-copy .lead {
  max-width: 650px;
}

.landing-hero-image {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  max-width: 100%;
}

.landing-hero-image::before {
  content: "";
  position: absolute;
  inset: 9% 7% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.18), transparent 62%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 46%);
  filter: blur(28px);
  pointer-events: none;
}

.landing-hero-image img,
.copy-proof-image img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.landing-hero-image img {
  width: min(100%, 850px);
  max-width: 100%;
  max-height: min(78vh, 720px);
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.68));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.12);
}

.hero-stats span {
  display: grid;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  color: rgba(248, 250, 252, 0.76);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 7, 10, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.landing-products,
.copy-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.landing-products h2,
.copy-proof h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.landing-products p,
.copy-proof p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.landing-products .actions,
.copy-proof .actions {
  margin-top: 28px;
}

.portfolio-live-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.portfolio-live-main {
  display: grid;
  gap: 22px;
  flex: 1 1 360px;
}

.portfolio-live-main .voice-stat,
.portfolio-live-main .actions {
  margin: 0;
}

.portfolio-live-qr {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transform: translateY(2px);
}

.portfolio-live-qr img {
  width: 128px;
  height: 128px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

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

.product-mini-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 124px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-mini-grid a::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 35%, rgba(242, 212, 131, 0.14) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 180ms ease, transform 260ms ease;
}

.product-mini-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 212, 131, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.product-mini-grid a:hover::before {
  opacity: 1;
  transform: translateX(34%);
}

.product-mini-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.46);
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.1);
  font-weight: 900;
}

.product-mini-grid strong {
  position: relative;
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.product-mini-grid p {
  position: relative;
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.home-product-map {
  display: grid;
  gap: 14px;
}

.home-product-map a {
  color: inherit;
}

.brain-strip,
.core-solution-row a,
.support-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 178, 94, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 15, 20, 0.88);
}

.brain-strip {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.brain-strip::before,
.core-solution-row a::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 34%, rgba(242, 212, 131, 0.15) 48%, transparent 64% 100%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 180ms ease, transform 280ms ease;
}

.brain-strip:hover,
.core-solution-row a:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 212, 131, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.brain-strip:hover::before,
.core-solution-row a:hover::before {
  opacity: 1;
  transform: translateX(34%);
}

.brain-strip span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.46);
  border-radius: 10px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.1);
  font-weight: 900;
}

.brain-strip span svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brain-strip strong,
.core-solution-row strong {
  position: relative;
  display: block;
  color: var(--white);
  line-height: 1.2;
}

.brain-strip p,
.core-solution-row p,
.support-strip p {
  position: relative;
  margin: 6px 0 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.core-solution-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.core-solution-row a {
  display: grid;
  align-content: start;
  min-height: 174px;
  padding: 22px 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.core-solution-row small {
  position: relative;
  display: block;
  margin: 10px 0 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  padding: 16px 18px;
}

.support-strip span {
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(214, 178, 94, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: rgba(214, 178, 94, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.support-strip p {
  flex-basis: 100%;
}

.copy-proof {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 0%, rgba(214, 178, 94, 0.12), transparent 36%),
    rgba(5, 7, 10, 0.62);
}

.copy-proof-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.copy-proof-image img {
  max-height: 620px;
  object-fit: contain;
}

.copy-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.copy-modes span {
  padding: 9px 14px;
  border: 1px solid rgba(214, 178, 94, 0.28);
  border-radius: 7px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-weight: 850;
}

.compact-stat {
  margin-top: 24px;
}

.product-choice-grid {
  padding: 14px;
  border: 1px solid rgba(201, 209, 217, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 178, 94, 0.08), transparent 34%),
    rgba(5, 7, 10, 0.5);
}

.product-choice-grid .workflow-step {
  min-height: 210px;
}

.product-choice-grid .workflow-step strong {
  color: var(--gold-bright);
  font-size: clamp(24px, 2.4vw, 34px);
}

.product-choice-grid .workflow-step:nth-child(odd) strong {
  color: var(--green);
}

.section-action {
  margin-top: 28px;
}

.strategy-card {
  min-height: 230px;
}

.portfolio-overview-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.portfolio-overview-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.portfolio-overview-copy p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.portfolio-overview-copy .actions {
  margin-top: 28px;
}

.strategy-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  padding: 18px 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(214, 178, 94, 0.015)),
    rgba(10, 12, 14, 0.5);
  border-top: 1px solid rgba(214, 178, 94, 0.18);
  border-bottom: 1px solid rgba(214, 178, 94, 0.12);
}

.strategy-mode {
  position: relative;
  min-height: 150px;
  padding: 26px 0 26px 30px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  border-right: 0;
}

.strategy-mode:last-child {
  border-bottom: 0;
}

.strategy-mode::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 8px;
  height: auto;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(214, 178, 94, 0.34);
}

.strategy-mode.safe::before {
  background: linear-gradient(180deg, var(--green), rgba(47, 208, 116, 0.56));
  box-shadow: 0 0 18px rgba(47, 208, 116, 0.3);
}

.strategy-mode.balanced::before {
  background: linear-gradient(180deg, var(--gold-bright), rgba(214, 178, 94, 0.58));
  box-shadow: 0 0 18px rgba(214, 178, 94, 0.34);
}

.strategy-mode.growth::before {
  background: linear-gradient(180deg, var(--red), rgba(255, 107, 61, 0.58));
  box-shadow: 0 0 18px rgba(255, 107, 61, 0.28);
}

.strategy-mode h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 26px;
}

.strategy-mode p {
  margin: 0;
  color: rgba(248, 250, 252, 0.64);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 0 12px;
  border: 1px solid rgba(214, 178, 94, 0.34);
  border-radius: 7px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.strategy-mode.safe .status-badge {
  color: #8ff0ad;
  border-color: rgba(47, 208, 116, 0.4);
  background: rgba(47, 208, 116, 0.08);
}

.strategy-mode.balanced .status-badge {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.42);
  background: rgba(214, 178, 94, 0.08);
}

.strategy-mode.growth .status-badge {
  color: #ffb199;
  border-color: rgba(255, 107, 61, 0.42);
  background: rgba(255, 107, 61, 0.08);
}

.roadmap-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 0%, rgba(214, 178, 94, 0.12), transparent 36%),
    rgba(5, 7, 10, 0.62);
}

.roadmap-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.roadmap-panel p {
  max-width: 640px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

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

.roadmap-lists > div {
  padding: 24px;
  border: 1px solid rgba(214, 178, 94, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.roadmap-lists h3 {
  margin: 0 0 16px;
  color: var(--gold-bright);
}

.roadmap-lists ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-lists li {
  color: rgba(248, 250, 252, 0.7);
}

.visual-split-option h2,
.image-first-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.visual-split-option p,
.image-first-copy p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
}

.visual-split-option img {
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.image-first-option {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.image-first-option img {
  opacity: 0.92;
}

.image-first-copy {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  top: clamp(22px, 4vw, 54px);
  z-index: 1;
  max-width: 560px;
  padding: 26px;
  border: 1px solid rgba(214, 178, 94, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.final-cta {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(214, 178, 94, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 178, 94, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.final-cta h2 {
  width: 100%;
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  text-align: center;
}

.final-cta .eyebrow {
  width: 100%;
  text-align: center;
}

.final-cta p {
  width: fit-content;
  max-width: min(980px, 100%);
  margin: 0 auto;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  text-align: center;
  justify-self: center;
}

.final-cta .actions {
  justify-content: center;
  margin-top: 0;
}

.final-cta > div:first-child {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.flow {
  position: relative;
  min-height: 520px;
  padding: 38px;
  overflow: hidden;
}

.flow-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 178, 94, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.2), rgba(15, 18, 23, 0.92));
  box-shadow: 0 0 80px rgba(214, 178, 94, 0.16);
  text-align: center;
  font-weight: 850;
}

.node {
  position: absolute;
  width: min(250px, 34%);
}

.node.n1 { left: 6%; top: 10%; }
.node.n2 { right: 6%; top: 12%; }
.node.n3 { left: 8%; bottom: 12%; }
.node.n4 { right: 8%; bottom: 12%; }
.node.n5 { left: 50%; bottom: 4%; transform: translateX(-50%); }

.flow::before {
  content: "";
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(35deg, transparent 0 22%, rgba(214, 178, 94, 0.16) 22.2%, transparent 22.9% 100%),
    linear-gradient(145deg, transparent 0 20%, rgba(201, 209, 217, 0.12) 20.2%, transparent 20.8% 100%),
    linear-gradient(205deg, transparent 0 28%, rgba(214, 178, 94, 0.13) 28.2%, transparent 28.8% 100%);
  opacity: 0.9;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.12);
  text-align: left;
}

.table th {
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.08);
}

.table td {
  color: rgba(248, 250, 252, 0.76);
}

.form {
  display: grid;
  gap: 14px;
}

.product-mock {
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(214, 178, 94, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 18%, rgba(214, 178, 94, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(7, 10, 14, 0.78);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-image-card {
  position: relative;
  padding: 0;
  border: 1px solid rgba(214, 178, 94, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(5, 7, 10, 0.44);
  box-shadow: var(--shadow), 0 0 38px rgba(214, 178, 94, 0.08);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(5, 7, 10, 0.18) 72%, rgba(5, 7, 10, 0.62) 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-floating-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-floating-image::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.18), transparent 62%);
  filter: blur(24px);
}

.ecosystem-hero .hero-floating-image::before {
  display: none;
}

.ecosystem-hero .hero-floating-image img {
  border-radius: var(--radius);
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.66));
}

.hero-floating-image img {
  position: relative;
  width: min(680px, 106%);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 30px rgba(214, 178, 94, 0.12));
}

.home-system-visual {
  min-height: 500px;
}

.home-system-visual::before {
  display: none;
}

.home-system-visual img {
  width: min(720px, 108%);
  border-radius: 0;
  opacity: 1;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.68));
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.mock-screen {
  display: grid;
  gap: 12px;
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(201, 209, 217, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.mock-row strong {
  color: var(--white);
}

.mock-row span {
  color: var(--gold-bright);
  font-weight: 800;
}

.chart {
  height: 150px;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(90, 209, 95, 0.18) 28.4%, transparent 29% 100%),
    linear-gradient(25deg, transparent 0 45%, rgba(214, 178, 94, 0.2) 45.4%, transparent 46% 100%),
    rgba(255, 255, 255, 0.025);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 8px 11px;
  border: 1px solid rgba(214, 178, 94, 0.28);
  border-radius: 6px;
  color: var(--gold-bright);
  background: rgba(214, 178, 94, 0.065);
  font-size: 13px;
  font-weight: 750;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--silver);
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 209, 217, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(4, 6, 8, 0.58);
  font: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.disclaimer {
  padding: 18px;
  border: 1px solid rgba(239, 107, 107, 0.24);
  border-radius: var(--radius);
  color: rgba(248, 250, 252, 0.72);
  background: rgba(239, 107, 107, 0.06);
  font-size: 14px;
}

.footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
  color: rgba(248, 250, 252, 0.62);
  background: rgba(5, 7, 10, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand p {
  max-width: 340px;
  margin: 16px 0 0;
  color: rgba(248, 250, 252, 0.62);
  line-height: 1.65;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(214, 178, 94, 0.18));
}

.footer-logo .brand-mark {
  font-size: 30px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(214, 178, 94, 0.32);
  border-radius: 50%;
  color: var(--gold-bright);
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 242, 189, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(214, 178, 94, 0.13), rgba(255, 255, 255, 0.012)),
    rgba(5, 7, 10, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.footer .footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer .footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 212, 131, 0.72);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 24px rgba(214, 178, 94, 0.14);
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(248, 250, 252, 0.65);
}

.footer .footer-logo {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.footer a:hover {
  color: var(--gold-bright);
}

.footer-risk {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  color: rgba(248, 250, 252, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .menu {
    display: none;
  }

  .site-header.menu-open .menu {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(218, 181, 89, 0.28);
    border-radius: 10px;
    background: rgba(2, 3, 5, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 34px rgba(214, 178, 94, 0.12);
  }

  .site-header.menu-open .menu a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(214, 178, 94, 0.1);
  }

  .site-header.menu-open .menu a:last-child {
    border-bottom: 0;
  }

  .site-header.menu-open .menu a.active::after {
    display: none;
  }

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

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

  .hero.large .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .home-system-visual {
    min-height: 420px;
    order: -1;
  }

  .feature-row.tradoo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 640px;
  }

  .tradoo-row .mini:nth-child(3) {
    border-right: 0;
  }

  .tradoo-row .mini:nth-child(4),
  .tradoo-row .mini:nth-child(5),
  .tradoo-row .mini:nth-child(6) {
    border-top: 1px solid rgba(201, 209, 217, 0.12);
  }

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

  .choice-band,
  .audience-band,
  .note-band,
  .client-voice,
  .roadmap-panel,
  .visual-split-option,
  .ecosystem-balanced-hero,
  .ecosystem-intro,
  .ecosystem-users,
  .ecosystem-use,
  .products-hero-grid,
  .performance-hero-grid,
  .brain-hero-grid,
  .terminal-hero-grid,
  .section-split,
  .performance-data-band,
  .brain-workflow-band,
  .brain-note,
  .terminal-workflow-band,
  .product-guide,
  .product-architecture,
  .product-structure,
  .supporting-tools-split,
  .product-future,
  .landing-hero-grid,
  .landing-products,
  .audience-split,
  .portfolio-overview-split,
  .copy-proof {
    grid-template-columns: 1fr;
  }

  .diversify-band,
  .tech-strip {
    grid-template-columns: 1fr;
  }

  .diversify-points {
    border-left: 0;
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .diversify-points > div {
    padding-left: 0;
  }

  .portfolio-hero .hybrid-hero-title {
    font-size: clamp(38px, 7vw, 58px);
  }

  .portfolio-hero .hybrid-hero-title .gold-text {
    font-size: clamp(32px, 5.8vw, 44px);
  }

  .portfolio-hero-cards {
    max-width: 560px;
    margin: 26px 0 0;
  }

  .portfolio-hero-visual {
    max-width: 760px;
    margin: 28px auto 0;
  }

  .portfolio-hero-visual img {
    width: 100%;
    margin: 0 auto;
  }

  .core-solution-row {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-card img {
    width: 92px;
    height: 82px;
  }

  .choice-options,
  .audience-band > div + div,
  .note-band > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .choice-options {
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .choice-options > div {
    padding-left: 0;
  }

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

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

  .voice-panel {
    min-height: 260px;
  }

  .visual-split-option img,
  .ecosystem-balanced-hero img {
    order: -1;
  }

  .products-hero-image {
    order: -1;
  }

  .performance-hero-image {
    order: -1;
    max-width: 760px;
    margin: 28px auto 0;
  }

  .performance-hero-image img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .brain-orbit {
    order: -1;
    min-height: 460px;
    max-width: 760px;
    margin: 28px auto 0;
  }

  .products-hero-grid h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

  .performance-hero-grid h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

  .brain-hero-grid h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

  .terminal-hero-grid h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

  .terminal-hero-grid h1.analyzer-hero-title {
    font-size: clamp(36px, 6.2vw, 52px);
  }

  .terminal-hero-image {
    order: -1;
    max-width: 820px;
    margin: 28px auto 0;
  }

  .product-panel-image {
    order: -1;
    min-height: 360px;
    max-width: 560px;
    margin: 28px auto 0;
  }

  .terminal-hero-image img {
    width: 100%;
    max-width: 100%;
    max-height: 560px;
    margin: 0 auto;
  }

  .performance-review-list {
    border-left: 0;
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .brain-benefit-list {
    border-left: 0;
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .terminal-benefit-list {
    border-left: 0;
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .brain-benefit-list > div {
    padding-left: 0;
  }

  .terminal-benefit-list > div {
    padding-left: 0;
  }

  .performance-review-list > div {
    padding-left: 0;
  }

  .performance-placeholder-grid,
  .performance-data-grid {
    grid-template-columns: 1fr;
  }

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

  .terminal-feature-grid,
  .terminal-workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .performance-data-grid {
    border-left: 0;
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .performance-data-grid div,
  .performance-data-grid div:nth-child(odd),
  .performance-data-grid div:nth-last-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  }

  .performance-data-grid div:last-child {
    border-bottom: 0;
  }

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

  .product-structure-list,
  .supporting-tool-list,
  .product-future-list {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(214, 178, 94, 0.18);
  }

  .product-structure-list > div,
  .supporting-tool-list .supporting-tool-card,
  .product-structure-list > p {
    padding-left: 0;
  }

  .copy-proof-image {
    order: -1;
  }

  .landing-hero {
    min-height: auto;
    padding: 47px 0 71px;
  }

  .landing-hero-image {
    margin-top: 12px;
  }

  .landing-hero-image img {
    max-height: 520px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

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

  .nav {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-mark {
    font-size: 15px;
  }

  .footer-logo img {
    width: 68px;
    height: 68px;
  }

  .footer-logo .brand-mark {
    font-size: 18px;
  }

  .nav-actions .btn:first-child {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .btn {
    padding: 0 16px;
  }

  .hero,
  .section {
    padding: 50px 0;
  }

  .landing-hero {
    padding: 41px 0 63px;
  }

  .landing-hero-grid h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .performance-hero-grid h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .brain-hero-grid h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .terminal-hero-grid h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .terminal-hero-grid h1.analyzer-hero-title {
    font-size: clamp(36px, 11vw, 50px);
  }

  .landing-hero-image {
    margin-top: 22px;
  }

  .landing-hero-image img {
    max-height: 360px;
  }

  .performance-hero-image {
    margin-top: 22px;
  }

  .performance-hero-image img {
    max-height: 360px;
  }

  .brain-orbit {
    min-height: 390px;
    margin-top: 22px;
  }

  .terminal-hero-image {
    margin-top: 22px;
  }

  .product-panel-image {
    min-height: 300px;
    margin-top: 22px;
  }

  .terminal-hero-image img {
    max-height: 360px;
  }

  .product-panel-image img,
  .pulse-panel-image img {
    width: min(100%, 340px);
  }

  .brain-core {
    width: min(70%, 260px);
    padding: 28px 18px;
  }

  .brain-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .brain-icon svg {
    width: 36px;
    height: 36px;
  }

  .orbit-pill {
    min-width: 92px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .orbit-pill.manager {
    right: 0;
  }

  .orbit-pill.analyzer {
    left: 0;
  }

  .orbit-pill.pulse {
    right: 8%;
    bottom: 8%;
  }

  .orbit-pill.activity {
    left: 8%;
    bottom: 8%;
  }

  .hero-stats span {
    min-height: 54px;
  }

  .hero.large {
    min-height: auto;
  }

  h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .hero-visual {
    min-height: 330px;
  }

  .home-system-visual {
    min-height: 300px;
  }

  .logo-stage img {
    transform: translateY(-28px);
  }

  .pedestal {
    bottom: 24px;
    height: 52px;
  }

  .section-head {
    display: block;
  }

  .feature-row,
  .portfolio-steps,
  .tech-rail,
  .product-choice-rows,
  .grid.five,
  .grid.four,
  .grid.three,
  .grid.two,
  .roadmap-lists,
  .audience-strip,
  .strategy-rail,
  .ecosystem-product-rail,
  .product-mini-grid,
  .brain-product-map,
  .brain-workflow-steps,
  .terminal-feature-grid,
  .terminal-workflow-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .terminal-brain-strip {
    grid-template-columns: 1fr;
  }

  .brain-strip {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .brain-strip span {
    width: 42px;
    height: 42px;
  }

  .core-solution-row a {
    min-height: auto;
    padding: 18px;
  }

  .support-strip {
    align-items: flex-start;
  }

  .audience-item,
  .strategy-mode {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  }

  .strategy-mode {
    padding-left: 24px;
    padding-top: 28px;
  }

  .strategy-mode::before {
    top: 12px;
    bottom: 12px;
    width: 7px;
  }

  .audience-item:last-child,
  .strategy-mode:last-child {
    border-bottom: 0;
  }

  .portfolio-steps > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  }

  .portfolio-steps > div:last-child {
    border-bottom: 0;
  }

  .diversify-points > div {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .tech-rail > div:nth-last-child(2) {
    border-bottom-color: rgba(201, 209, 217, 0.1);
  }

  .tech-suite-visual {
    min-height: 220px;
    margin-top: 10px;
  }

  .tech-suite-visual img {
    max-height: 280px;
  }

  .tech-strip-reversed .tech-strip-copy {
    justify-self: start;
  }

  .feature-row.tradoo-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: auto;
  }

  .product-choice-rows > div {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 22px 0;
    border-right: 0;
  }

  .product-choice-rows > div:nth-child(odd) {
    border-right: 0;
  }

  .product-choice-rows > div:nth-last-child(2) {
    border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  }

  .product-future-list ul {
    grid-template-columns: 1fr;
  }

  .ecosystem-benefits div,
  .user-list div,
  .guide-list div {
    grid-template-columns: 1fr;
  }

  .ecosystem-product-rail a {
    min-height: auto;
  }

  .client-voice {
    padding: 28px 20px;
  }

  .voice-stat {
    display: grid;
    align-items: start;
  }

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

  .image-first-copy {
    position: relative;
    left: auto;
    top: auto;
    max-width: none;
    margin-bottom: 14px;
    background: rgba(9, 11, 15, 0.82);
  }

  .future-strip {
    display: grid;
    align-items: start;
  }

  .final-cta .actions {
    justify-content: center;
  }

  .portfolio-hero-cards {
    max-width: 100%;
    margin-left: 0;
  }

  .portfolio-hero-visual {
    margin-top: 24px;
  }

  .portfolio-hero-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    min-height: 112px;
    padding: 16px 18px;
  }

  .portfolio-hero-card img {
    width: 86px;
    height: 76px;
  }

  .portfolio-performance {
    grid-column: 1 / -1;
    justify-items: start;
    min-width: 0;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(248, 250, 252, 0.14);
    text-align: left;
  }

  .portfolio-hero .hybrid-hero-title {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.98;
  }

  .products-hero-grid h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .portfolio-hero .hybrid-hero-title .gold-text {
    font-size: clamp(31px, 9vw, 43px);
  }

  .mini {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 209, 217, 0.12);
  }

  .tradoo-row .mini:nth-child(3) {
    border-right: 0;
  }

  .tradoo-row .mini:nth-child(4),
  .tradoo-row .mini:nth-child(5),
  .tradoo-row .mini:nth-child(6) {
    border-top: 0;
  }

  .mini:last-child {
    border-bottom: 0;
  }

  .flow {
    min-height: auto;
    padding: 18px;
  }

  .flow-core,
  .node {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
    margin: 0 0 14px;
  }

.flow-core {
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
  }
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .site-header .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: clamp(18px, 2.3vw, 34px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 76px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .site-header.menu-open .menu {
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
  }
}

/* Supporting pages */
.support-hero {
  background: #000;
}

.support-hero .hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(24px, 3vw, 42px);
}

.support-hero .hybrid-hero-title {
  max-width: 680px;
  text-transform: uppercase;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.96;
}

.support-hero .hybrid-hero-title .silver-text,
.support-hero .hybrid-hero-title .gold-text {
  display: block;
}

.contact-hero-image {
  position: relative;
  overflow: visible;
  width: 100%;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.contact-hero-image::before {
  content: "";
  position: absolute;
  inset: 8% 5% 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.16), transparent 64%),
    radial-gradient(circle, rgba(255, 242, 189, 0.08), transparent 46%);
  filter: blur(34px);
  opacity: 0.72;
  pointer-events: none;
}

.contact-hero-image img {
  position: relative;
  display: block;
  width: min(112%, 940px);
  max-width: none;
  max-height: min(78vh, 700px);
  height: auto;
  margin: 0 0 0 -4%;
  object-fit: contain;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.68));
  -webkit-mask-image: radial-gradient(ellipse 82% 76% at 56% 52%, #000 0 56%, rgba(0, 0, 0, 0.78) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 76% at 56% 52%, #000 0 56%, rgba(0, 0, 0, 0.78) 70%, transparent 100%);
}

.support-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.support-visual::before {
  content: "";
  position: absolute;
  width: min(500px, 96%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.2), transparent 67%);
  filter: blur(18px);
}

.support-orbit {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 178, 94, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(18, 22, 28, 0.92), rgba(0, 0, 0, 0.36) 62%, transparent 63%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.support-orbit img {
  width: min(170px, 42%);
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(214, 178, 94, 0.24));
}

.orbit-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 142px;
  padding: 10px 13px;
  border: 1px solid rgba(214, 178, 94, 0.34);
  border-radius: var(--radius);
  background: rgba(13, 16, 21, 0.86);
  color: rgba(248, 250, 252, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.orbit-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.9;
}

.orbit-pill:nth-child(2) { top: 6%; left: 50%; transform: translateX(-50%); }
.orbit-pill:nth-child(3) { right: -4%; top: 38%; }
.orbit-pill:nth-child(4) { bottom: 8%; left: 50%; transform: translateX(-50%); }
.orbit-pill:nth-child(5) { left: -4%; top: 38%; }

.support-list {
  display: grid;
  border-left: 1px solid rgba(214, 178, 94, 0.2);
}

.support-list > div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0 28px 34px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.support-list > div:last-child {
  border-bottom: 0;
}

.support-list span,
.support-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 178, 94, 0.44);
  border-radius: var(--radius);
  background: rgba(214, 178, 94, 0.08);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.support-contact-options .support-number {
  margin-bottom: 20px;
}

.support-list strong {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-soft);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
}

.support-list p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.support-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(214, 178, 94, 0.18);
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.support-feature-row > article {
  padding: 30px 26px;
  border-right: 1px solid rgba(201, 209, 217, 0.09);
}

.support-feature-row > article:last-child {
  border-right: 0;
}

.support-feature-row h3 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 21px;
}

.support-feature-row p {
  margin: 0;
  color: rgba(248, 250, 252, 0.66);
  line-height: 1.6;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid rgba(214, 178, 94, 0.18);
}

.support-band h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.support-band p {
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.65;
  font-size: 17px;
}

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

.support-price-card {
  padding: 28px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 25, 31, 0.96), rgba(7, 9, 12, 0.82));
}

.support-price-card h3 {
  margin: 14px 0 10px;
  font-size: 26px;
}

.support-price-card p,
.support-price-card li {
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.6;
}

.support-price-card ul {
  padding-left: 18px;
  margin: 18px 0 22px;
}

.pricing-hero .lead {
  max-width: 620px;
}

.pricing-hero-image img {
  width: min(100%, 940px);
  max-width: 100%;
  margin: 0 0 0 auto;
}

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

.pricing-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(214, 178, 94, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 25, 31, 0.96), rgba(7, 9, 12, 0.84));
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(242, 212, 131, 0.11) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.pricing-card:hover::before {
  transform: translateX(120%);
}

.pricing-pill,
.pricing-addon-card span {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(214, 178, 94, 0.36);
  border-radius: 7px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 20px 0 12px;
  color: var(--white);
  font-size: 26px;
}

.pricing-price {
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 34px;
  font-weight: 900;
}

.pricing-price span {
  color: rgba(248, 250, 252, 0.58);
  font-size: 15px;
}

.pricing-card p,
.pricing-card li,
.pricing-addon-card p,
.pricing-addon-card li,
.pricing-portfolio-band p,
.pricing-faq p {
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.62;
}

.pricing-card ul {
  flex: 1;
  margin: 18px 0 24px;
  padding-left: 18px;
}

.pricing-core-grid .pricing-card .btn,
.pricing-addon-grid .pricing-card .btn {
  color: #161008;
  border-color: rgba(242, 212, 131, 0.72);
  background: linear-gradient(135deg, rgba(245, 220, 150, 0.96), rgba(201, 150, 53, 0.9));
  box-shadow: 0 16px 40px rgba(214, 178, 94, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.pricing-core-grid .pricing-card .btn:hover,
.pricing-addon-grid .pricing-card .btn:hover {
  color: var(--gold-bright);
  border-color: rgba(214, 178, 94, 0.34);
  background: transparent;
  box-shadow: none;
}

.pricing-core-grid .pricing-card:hover,
.pricing-addon-grid .pricing-card:hover {
  transform: none;
  box-shadow: none;
}

.pricing-core-grid .pricing-card:hover::before,
.pricing-addon-grid .pricing-card:hover::before {
  opacity: 0;
  transform: translateX(-120%);
}

.pricing-addon-product-card {
  border-color: rgba(214, 178, 94, 0.28);
}

.pricing-addon-product-card .pricing-price {
  font-size: 32px;
}

.pricing-addon-split,
.pricing-portfolio-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
  border-bottom: 1px solid rgba(214, 178, 94, 0.08);
  padding-top: 44px;
  padding-bottom: 44px;
}

.pricing-addon-list {
  display: grid;
  gap: 18px;
}

.pricing-addon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, auto);
  gap: 26px;
  align-items: center;
  padding: 26px 28px;
  border-left: 3px solid rgba(214, 178, 94, 0.72);
  background: linear-gradient(135deg, rgba(18, 21, 27, 0.92), rgba(4, 5, 7, 0.6));
}

.pricing-addon-card h3 {
  margin: 14px 0 10px;
  font-size: 25px;
}

.pricing-addon-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.pricing-addon-side {
  display: grid;
  gap: 8px;
  justify-items: end;
  padding-left: 24px;
  border-left: 1px solid rgba(214, 178, 94, 0.16);
  text-align: right;
}

.pricing-addon-side strong {
  color: var(--gold-bright);
  font-size: 34px;
  line-height: 1;
}

.pricing-addon-side small {
  color: rgba(248, 250, 252, 0.58);
}

.pricing-bundle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(242, 212, 131, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 20%, rgba(242, 212, 131, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(29, 27, 20, 0.96), rgba(7, 9, 12, 0.92));
  box-shadow: 0 30px 90px rgba(214, 178, 94, 0.08);
}

.pricing-bundle h2 {
  margin-bottom: 12px;
}

.pricing-bundle ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: rgba(248, 250, 252, 0.74);
}

.pricing-bundle-price {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 26px;
  border-left: 1px solid rgba(242, 212, 131, 0.22);
}

.pricing-bundle-price span,
.pricing-bundle-price em {
  color: rgba(248, 250, 252, 0.62);
}

.pricing-bundle-price strong {
  color: var(--gold-bright);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
}

.pricing-bundle-price strong span {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.pricing-bundle-price b {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(242, 212, 131, 0.34);
  border-radius: 999px;
  color: var(--gold-bright);
}

.pricing-comparison {
  overflow-x: auto;
  padding: 0;
  border: 1px solid rgba(214, 178, 94, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 12%, rgba(214, 178, 94, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(18, 21, 27, 0.88), rgba(5, 7, 10, 0.78));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.pricing-comparison th,
.pricing-comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.1);
  color: rgba(248, 250, 252, 0.72);
  text-align: left;
}

.pricing-comparison th {
  background: rgba(214, 178, 94, 0.07);
  color: var(--gold-bright);
  font-size: 13px;
  text-transform: uppercase;
}

.pricing-comparison tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.018);
}

.pricing-comparison tbody tr:hover {
  background: rgba(214, 178, 94, 0.045);
}

.pricing-comparison td:first-child {
  color: var(--white);
  font-weight: 800;
}

.pricing-comparison th:not(:first-child),
.pricing-comparison td:not(:first-child) {
  text-align: center;
}

.pricing-portfolio-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid rgba(214, 178, 94, 0.16);
}

.pricing-portfolio-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(190px, 0.6fr) minmax(0, 0.8fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(214, 178, 94, 0.12);
}

.pricing-portfolio-list span {
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 900;
}

.pricing-portfolio-list strong {
  color: var(--white);
}

.pricing-portfolio-list p {
  margin: 0;
}

.pricing-faq {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.18);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-faq-content {
  padding: clamp(34px, 4.8vw, 70px);
  background-color: #000;
  background-image:
    linear-gradient(rgba(214, 178, 94, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 178, 94, 0.028) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pricing-faq-content h2 {
  margin: 0 0 30px;
  max-width: 640px;
  font-size: clamp(28px, 3vw, 42px);
}

.pricing-faq details {
  border-bottom: 1px solid rgba(214, 178, 94, 0.12);
  padding: 22px 0;
}

.pricing-faq summary {
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
  font-weight: 850;
  list-style-position: outside;
}

.pricing-faq p {
  margin: 12px 0 0;
  max-width: 760px;
}

.pricing-faq-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: clamp(22px, 3vw, 42px);
  background: #000;
  isolation: isolate;
}

.pricing-faq-image::before {
  content: "";
  position: absolute;
  inset: 14% 10% 10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.16), transparent 62%);
  filter: blur(34px);
}

.pricing-faq-image img {
  display: block;
  width: min(92%, 560px);
  height: auto;
  min-height: 0;
  max-height: 540px;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-composite: intersect;
}

.support-contact-options {
  display: grid;
  gap: 16px;
}

.support-contact-options .card {
  box-shadow: none;
}

#contact-form > .shell > .card:hover,
.support-contact-options .card:hover {
  transform: none;
  border-color: rgba(214, 178, 94, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: none;
}

#contact-form > .shell > .card:hover::before,
.support-contact-options .card:hover::before {
  opacity: 0;
  transform: translateX(-140%);
}

.allocation-comparison .table {
  min-width: 860px;
  border: 0;
  background: transparent;
}

.allocation-comparison .table th,
.allocation-comparison .table td {
  padding: 18px 20px;
}

.allocation-comparison .table td:first-child,
.allocation-comparison .table td:last-child {
  color: var(--white);
  font-weight: 800;
}

.allocation-comparison .safe-col {
  color: var(--green);
}

.allocation-comparison .balanced-col {
  color: var(--gold-bright);
}

.allocation-comparison .growth-col {
  color: #ffb86b;
}

@media (max-width: 1080px) {
  .support-hero .hero-grid,
  .pricing-addon-split,
  .pricing-portfolio-band,
  .support-band {
    grid-template-columns: 1fr;
  }

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

  .pricing-faq-image img {
    width: min(92%, 520px);
    max-height: 420px;
  }

  .support-feature-row,
  .pricing-core-grid,
  .pricing-addon-grid,
  .support-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-bundle-price {
    border-left: 0;
    border-top: 1px solid rgba(242, 212, 131, 0.22);
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .support-hero .hybrid-hero-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .support-visual {
    min-height: 300px;
  }

  .support-list {
    border-left: 0;
  }

  .support-list > div {
    padding: 24px 0;
  }

  .support-feature-row,
  .pricing-core-grid,
  .pricing-addon-grid,
  .support-price-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-addon-card ul,
  .pricing-bundle ul {
    grid-template-columns: 1fr;
  }

  .pricing-addon-side {
    justify-items: start;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

  .pricing-portfolio-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .support-feature-row > article {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 209, 217, 0.09);
  }
}
