:root {
  --bg: #010204;
  --ink: #03060b;
  --panel: rgba(5, 10, 18, .9);
  --panel-strong: rgba(7, 13, 22, .96);
  --line: rgba(218, 184, 110, .18);
  --gold: #d8b46a;
  --gold-soft: #f0d38b;
  --text: #edf4ff;
  --muted: #9fb1cc;
  --green: #78d8a2;
  --red: #df7777;
  --shadow: 0 34px 96px rgba(0, 0, 0, .54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at 16% -12%, rgba(216, 180, 106, .11), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(24, 44, 70, .16), transparent 34%),
    linear-gradient(135deg, #000102, var(--ink) 46%, #010204 100%);
}

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

.site-header,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px 12px;
  border: 1px solid rgba(218, 184, 110, .12);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(90deg, rgba(1, 2, 4, .98), rgba(5, 11, 20, .96) 54%, rgba(1, 2, 4, .98)),
    radial-gradient(circle at 12% 0%, rgba(216, 180, 106, .12), transparent 30%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .36);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 218px;
  max-height: 104px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 14px rgba(216, 180, 106, .16));
}

.brand span {
  display: block;
  color: #f8e7bf;
  font-weight: 500;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}

.top-actions,
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link,
.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .035);
  color: var(--text);
  font-weight: 550;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-link:hover,
.nav-button:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 180, 106, .48);
  background: rgba(216, 180, 106, .1);
}

.nav-button,
.button.primary {
  color: #151004;
  border-color: transparent;
  background: linear-gradient(135deg, #f5d990, #c99d45);
  box-shadow: 0 16px 42px rgba(216, 180, 106, .16);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .03em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.lang-pill:hover {
  color: #f8e7bf;
  background: rgba(216, 180, 106, .1);
  transform: translateY(-1px);
}

.lang-pill.active {
  color: #151004;
  background: linear-gradient(135deg, #f5d990, #c99d45);
}

.flag-icon {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #f4f6fb;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18), 0 8px 18px rgba(0, 0, 0, .26);
}

.button.secondary {
  color: var(--gold-soft);
  background: rgba(216, 180, 106, .11);
}

.button.large {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 1rem;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 44px 0 22px;
}

.hero-copy,
.hero-note,
.value-card,
.demo-card,
.subscription-section,
.legal-note,
.tension-band {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(6, 12, 21, .92), rgba(2, 5, 10, .88));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(30px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(216, 180, 106, .08), transparent 44%),
    radial-gradient(circle at 82% 10%, rgba(216, 180, 106, .1), transparent 30%);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(216, 180, 106, .34);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold-soft);
  background: rgba(216, 180, 106, .065);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 18px 0 8px;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 420;
}

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

.lead {
  margin-bottom: 12px;
  color: #f0d89a;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 420;
}

.body-copy,
.section-heading p,
.value-card p,
.demo-table,
.subscription-section p,
.legal-note,
.tension-band p {
  color: #cbd8ea;
  line-height: 1.7;
}

.decision-stack {
  display: grid;
  gap: 7px;
  margin: 24px 0 0;
  color: #f6e5bb;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 520;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.microcopy {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(216, 180, 106, .24);
  border-radius: 14px;
  color: #f3dcaa;
  background: rgba(216, 180, 106, .055);
  font-size: .94rem;
}

.hero-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(2, 5, 10, .48);
  box-shadow: none;
}

.hero-note p {
  margin: 0;
  color: #c9d6e8;
  line-height: 1.65;
  font-weight: 350;
}

.note-divider {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, transparent, rgba(216,180,106,.34), transparent);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.value-video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 20px;
  align-items: stretch;
  margin-top: 18px;
}

.value-stack {
  display: grid;
  gap: 14px;
}

.value-card,
.demo-card {
  padding: 24px;
}

.number,
.portfolio-label {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tension-band {
  margin-top: 22px;
  padding: 22px;
  color: #f1dba4;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 180, 106, .18), transparent 30%),
    rgba(255,255,255,.035);
}

.tension-band p {
  margin: 0;
  color: #f1dba4;
  font-size: 1.06rem;
  font-weight: 420;
}

.demo-intro {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(216, 180, 106, .2);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(216, 180, 106, .09), rgba(255,255,255,.025)),
    rgba(2, 5, 10, .48);
}

.demo-intro p {
  margin: 0;
  max-width: 900px;
  color: #f1dba4;
  line-height: 1.6;
  font-size: 1rem;
}

.demo-section {
  margin-top: 56px;
}

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

.problem-section {
  margin-top: 18px;
}

.ux-grid,
.process-steps,
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

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

.ux-card,
.process-card,
.feature-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 0%, rgba(216, 180, 106, .08), transparent 32%),
    linear-gradient(180deg, rgba(6, 12, 21, .9), rgba(2, 5, 10, .82));
  box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
}

.ux-card,
.process-card {
  padding: 24px;
}

.feature-item {
  padding: 20px;
}

.ux-card h3,
.process-card h3,
.feature-item h3 {
  margin: 8px 0 10px;
  color: #f6e5bb;
  font-size: 1.06rem;
  font-weight: 560;
  letter-spacing: -.02em;
}

.ux-card p,
.process-card p,
.feature-item p {
  margin: 0;
  color: #cbd8ea;
  line-height: 1.62;
  font-size: .95rem;
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(216, 180, 106, .15);
  border-radius: 50%;
}

.panel-preview,
.transparency-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(6, 12, 21, .76), rgba(2, 5, 10, .72)),
    radial-gradient(circle at 12% 0%, rgba(216, 180, 106, .1), transparent 34%);
  box-shadow: var(--shadow);
}

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

.status-guide {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(216, 180, 106, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(216, 180, 106, .1), transparent 32%),
    rgba(255,255,255,.025);
}

.status-guide-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.status-guide-heading h3 {
  margin: 0;
  color: #f6e5bb;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 520;
  letter-spacing: -.02em;
}

.status-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.status-guide-chip {
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(6, 12, 21, .62);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.status-guide-chip:hover,
.status-guide-chip.active {
  transform: translateY(-1px);
  border-color: rgba(216, 180, 106, .42);
  background: rgba(216, 180, 106, .075);
}

.status-guide-chip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: .95rem;
}

.status-guide-chip span {
  display: block;
  color: #cbd8ea;
  line-height: 1.48;
  font-size: .88rem;
}

.status-popover,
.alert-example-card {
  margin-top: 14px;
  max-width: 760px;
  padding: 12px;
  border: 1px solid rgba(216, 180, 106, .2);
  border-radius: 16px;
  background: rgba(2, 5, 10, .58);
  color: #cbd8ea;
  line-height: 1.45;
}

.status-popover strong,
.alert-example-card strong {
  display: block;
  color: #f6e5bb;
  margin-bottom: 5px;
}

.status-popover span,
.alert-example-card span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.alert-example {
  margin-top: 16px;
}

.alert-example-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(216, 180, 106, .1);
  color: var(--gold-soft);
  font-weight: 700;
  cursor: pointer;
}

.alert-example-card p {
  margin: 0 0 8px;
  color: #cbd8ea;
}

.email-preview-copy {
  margin-bottom: 10px;
}

.email-screenshot {
  margin: 12px 0 0;
}

.email-screenshot img {
  display: block;
  width: min(100%, 560px);
  max-height: 560px;
  object-fit: contain;
  border: 1px solid rgba(216, 180, 106, .24);
  border-radius: 18px;
  background: #071522;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.email-screenshot figcaption {
  max-width: 560px;
  margin-top: 8px;
  color: #9fb8d9;
  font-size: .84rem;
}

.video-feature {
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  align-items: center;
  min-height: 100%;
  padding: 22px;
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 180, 106, .12), transparent 34%),
    linear-gradient(180deg, rgba(6, 12, 21, .9), rgba(2, 5, 10, .82));
  box-shadow: var(--shadow);
}

.video-feature .video-copy {
  width: 100%;
  text-align: left;
}

.video-copy h2 {
  max-width: 320px;
  margin: 12px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -.03em;
}

.video-copy p {
  max-width: 320px;
  margin: 0;
  color: #cbd8ea;
  font-size: .95rem;
  line-height: 1.58;
}

.phone-video-frame {
  position: relative;
  width: min(100%, 218px);
  margin: 18px auto 0;
  padding: 9px 8px 10px;
  border: 1px solid rgba(216, 180, 106, .28);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 216, 145, .16), rgba(255,255,255,.02) 22%, rgba(0,0,0,.42) 100%),
    #03070d;
  box-shadow:
    0 14px 36px rgba(0,0,0,.36),
    inset 0 0 0 1px rgba(255,255,255,.08);
  aspect-ratio: 9 / 16;
}

.phone-video-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 2;
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  transform: translateX(-50%);
}

.phone-video-frame iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 19px;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.subscription-section h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -.03em;
}

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

.demo-table-wrap {
  position: relative;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.demo-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: .9rem;
}

.demo-table th,
.demo-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}

.demo-table th:nth-child(1),
.demo-table td:nth-child(1) {
  width: 15%;
  min-width: 104px;
  position: sticky;
  left: 0;
  z-index: 2;
  background: linear-gradient(90deg, #080d17 0%, #080d17 78%, rgba(8, 13, 23, .92) 100%);
  background-clip: padding-box;
  box-shadow: 14px 0 22px rgba(3, 7, 13, .42);
}

.demo-table th:nth-child(2),
.demo-table td:nth-child(2) {
  width: 28%;
}

.demo-table th:nth-child(3),
.demo-table td:nth-child(3) {
  width: 19%;
}

.demo-table th:nth-child(4),
.demo-table td:nth-child(4),
.demo-table th:nth-child(5),
.demo-table td:nth-child(5) {
  width: 19%;
  font-variant-numeric: tabular-nums;
}

.demo-table th {
  color: #f1dba4;
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-table th:nth-child(1) {
  z-index: 3;
}

.ticker-signal,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  font-weight: 760;
}

.ticker-signal {
  min-width: 54px;
  padding: 7px 10px;
  letter-spacing: .08em;
  margin: 0 auto;
}

.status-pill {
  min-width: 132px;
  padding: 7px 10px;
  font-size: .78rem;
  margin: 0 auto;
}

.ticker-signal.positive,
.status-pill.positive,
.ticker-signal.hold,
.status-pill.hold {
  color: #bdecc8;
  background: rgba(54, 139, 82, .16);
  border-color: rgba(118, 198, 142, .24);
}

.ticker-signal.partial,
.status-pill.partial {
  color: #f2d28a;
  background: rgba(170, 122, 36, .16);
  border-color: rgba(227, 184, 94, .28);
}

.ticker-signal.exit,
.status-pill.exit {
  color: #f1b0a8;
  background: rgba(157, 65, 54, .17);
  border-color: rgba(218, 126, 112, .28);
}

.ticker-signal.wait,
.status-pill.wait {
  color: #b8c4d6;
  background: rgba(137, 151, 170, .13);
  border-color: rgba(169, 182, 199, .18);
}

.demo-table .pos {
  color: #a7e2b1;
  font-weight: 720;
  text-align: center;
}

.demo-table .neg {
  color: #efb1a8;
  font-weight: 720;
  text-align: center;
}

.demo-table .neutral {
  color: #b8c4d6;
  font-weight: 620;
  text-align: center;
}

.demo-broker-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(216, 180, 106, .34);
  border-radius: 999px;
  padding: 10px 16px;
  color: #151004;
  background: linear-gradient(135deg, #f5d990, #c99d45);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(201, 157, 69, .14);
}

.broker-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.broker-modal.open {
  display: block;
}

.broker-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.broker-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 28px, 620px);
  max-height: min(760px, calc(100vh - 28px));
  overflow: auto;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(216, 180, 106, .24);
  border-radius: 26px;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 180, 106, .16), transparent 34%),
    linear-gradient(145deg, #080d17, #0d1522);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .44);
}

.broker-modal-panel h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.broker-modal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.broker-modal-close {
  float: right;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.demo-broker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.demo-broker-link {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  padding: 12px;
  color: #dce8fb;
  background: rgba(255, 255, 255, .035);
  font-weight: 720;
  text-align: center;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.demo-broker-link:hover {
  border-color: rgba(216, 180, 106, .44);
  background: rgba(216, 180, 106, .09);
  transform: translateY(-1px);
}

.demo-broker-legal {
  margin-top: 18px;
  border: 1px solid rgba(223, 119, 119, .2);
  border-radius: 18px;
  padding: 14px;
  color: #f1c8c8;
  background: rgba(157, 65, 54, .08);
  font-size: .92rem;
  line-height: 1.6;
}

.skeleton-row td {
  height: 52px;
}

.skeleton-row span {
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045), rgba(216,180,106,.12), rgba(255,255,255,.045));
  background-size: 220% 100%;
  animation: skeletonShimmer 1.35s ease-in-out infinite;
}

.skeleton-row td:nth-child(1) span {
  width: 58px;
  margin: 0 auto;
}

.skeleton-row td:nth-child(2) span {
  width: 136px;
  margin: 0 auto;
}

.load-error-row td {
  color: #f1c8c8;
  white-space: normal;
  line-height: 1.5;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

.subscription-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 28px;
}

.subscription-section p {
  margin-bottom: 0;
  max-width: 680px;
}

.subscription-note {
  margin-top: 12px;
  color: #f1dba4 !important;
  font-size: .94rem;
}

.access-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 6px;
  max-width: 760px;
}

.access-flow span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(216, 180, 106, .2);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  color: #dce8fb;
  font-weight: 650;
}

.access-flow strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #151004;
  background: linear-gradient(135deg, #f5d990, #c99d45);
}

.subscription-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-note {
  margin: 28px 0 42px;
  padding: 18px;
  border-color: rgba(223, 119, 119, .22);
  color: #f1c8c8;
  background: rgba(255,255,255,.03);
  font-size: .92rem;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .site-header,
  .subscription-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .value-video-section,
  .demo-grid,
  .ux-grid.three,
  .process-steps,
  .feature-list,
  .compact-list,
  .status-guide-grid,
  .access-flow {
    grid-template-columns: 1fr;
  }

  .subscription-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .phone-video-frame {
    margin: 0 auto;
    width: min(100%, 230px);
  }

  .video-feature {
    grid-template-columns: 1fr;
  }

  .video-feature .video-copy,
  .video-copy h2,
  .video-copy p {
    max-width: none;
    text-align: center;
  }

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

@media (max-width: 620px) {
  .site-header,
  main {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    margin-top: 10px;
    padding: 12px;
    border-radius: 20px;
  }

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

  .brand img {
    width: 170px;
    max-height: 88px;
  }

  .top-actions,
  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-link,
  .nav-button,
  .button,
  .demo-broker-button {
    width: 100%;
    min-height: 40px;
    padding: 9px 14px;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .lang-pill {
    flex: 0 0 auto;
  }

  .hero-copy,
  .hero-note,
  .demo-intro,
  .value-card,
  .ux-card,
  .process-card,
  .feature-item,
  .status-guide,
  .panel-preview,
  .transparency-section,
  .demo-card,
  .video-feature,
  .subscription-section {
    border-radius: 20px;
    padding: 20px;
  }

  .status-guide-chip {
    min-height: auto;
  }

  .demo-table-wrap {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 0;
    max-width: calc(100vw - 34px);
    overflow-x: scroll;
  }

  .demo-table {
    display: block;
    width: max-content;
    min-width: 0;
  }

  .demo-table thead,
  .demo-table tbody {
    display: block;
  }

  .demo-table tr {
    display: grid;
    grid-template-columns: 96px 188px 126px 148px 118px;
    width: max-content;
  }

  .demo-table th,
  .demo-table td {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    min-width: 0;
  }

  .demo-table th:nth-child(1),
  .demo-table td:nth-child(1) {
    width: auto;
    min-width: 0;
    max-width: none;
    left: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .demo-table th:nth-child(2),
  .demo-table td:nth-child(2),
  .demo-table th:nth-child(3),
  .demo-table td:nth-child(3),
  .demo-table th:nth-child(4),
  .demo-table td:nth-child(4),
  .demo-table th:nth-child(5),
  .demo-table td:nth-child(5) {
    width: auto;
  }

  .demo-broker-grid {
    grid-template-columns: 1fr;
  }

  .ticker-signal {
    min-width: 50px;
    padding: 7px 8px;
  }
}
