:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-2: #101010;
  --surface: #151515;
  --surface-2: #1d1d1b;
  --surface-3: #242420;
  --line: #333128;
  --line-soft: #26241f;
  --text: #f4f0e6;
  --muted: #b9b4a8;
  --dim: #898478;
  --gold: #d6b64a;
  --gold-soft: #f0d57a;
  --blue: #0754c9;
  --blue-soft: #51a8ff;
  --blue-deep: #071934;
  --silver: #dededa;
  --black: #050505;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(214, 182, 74, 0.08), transparent 32rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 62%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 62%);
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  color: #fff3b0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: 4.2rem;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(214, 182, 74, 0.18);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 650;
}

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

.brand span {
  display: inline-grid;
  line-height: 1.05;
  min-width: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1;
  padding: 0.55rem 0.75rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(214, 182, 74, 0.28);
  background: rgba(214, 182, 74, 0.08);
  color: var(--text);
}

.campaign-bar {
  position: sticky;
  top: 92px;
  z-index: 19;
  border-bottom: 1px solid rgba(214, 182, 74, 0.18);
  background: linear-gradient(90deg, rgba(214, 182, 74, 0.16), rgba(7, 84, 201, 0.18));
  backdrop-filter: blur(14px);
}

.campaign-bar-inner {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.campaign-bar a {
  color: var(--text);
}

.campaign-bar .campaign-link {
  color: var(--gold-soft);
  white-space: nowrap;
}

.hero {
  padding: clamp(3rem, 6vw, 5.25rem) 0 clamp(2.3rem, 5vw, 3.8rem);
}

.home-hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.partner-hero {
  padding-top: clamp(3.2rem, 7vw, 6rem);
}

.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.hero-kicker li,
.pill {
  border: 1px solid rgba(214, 182, 74, 0.32);
  border-radius: 999px;
  background: rgba(214, 182, 74, 0.08);
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.42rem 0.72rem;
}

.hero-kicker li.blue,
.pill.blue {
  border-color: rgba(81, 168, 255, 0.45);
  background: rgba(7, 84, 201, 0.16);
  color: #dceeff;
}

.hero-kicker li.free,
.pill.free {
  border-color: rgba(214, 182, 74, 0.58);
  background: rgba(214, 182, 74, 0.16);
  color: var(--gold-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.lead {
  max-width: 760px;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1.25rem;
}

.home-hero h1 {
  max-width: 720px;
  font-size: 4.55rem;
}

.home-hero .lead {
  max-width: 680px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.trust-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: var(--silver);
  font-size: 0.9rem;
  padding: 0.42rem 0.7rem;
}

.hero-note {
  max-width: 650px;
  margin-top: 0.8rem;
  color: var(--dim);
  font-size: 0.9rem;
}

.hero-note a {
  color: var(--silver);
  text-decoration: underline;
  text-decoration-color: rgba(214, 182, 74, 0.45);
  text-underline-offset: 0.25em;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 182, 74, 0.45);
  border-radius: var(--radius);
  background: var(--gold);
  color: #111;
  font-weight: 750;
  padding: 0.72rem 1rem;
}

.button:hover {
  background: var(--gold-soft);
  color: #111;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--gold-soft);
  background: rgba(214, 182, 74, 0.1);
  color: var(--text);
}

.button.ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.button.has-icon {
  gap: 0.55rem;
}

.button.has-icon img {
  width: 18px;
  height: 18px;
}

.hero-card {
  margin: 0;
  align-self: center;
  border: 1px solid rgba(214, 182, 74, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(29, 29, 27, 0.95), rgba(10, 10, 10, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-card .caption {
  border-top: 1px solid var(--line-soft);
  padding: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-visual {
  display: grid;
  gap: 1rem;
  border-color: rgba(81, 168, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(214, 182, 74, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(7, 25, 52, 0.9), rgba(8, 8, 8, 0.98));
  padding: 1rem;
}

.brand-pair {
  display: grid;
  gap: 0.75rem;
}

.logo-panel {
  display: grid;
  min-height: 186px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  padding: 1.2rem;
}

.logo-panel img {
  max-height: 136px;
  width: auto;
  object-fit: contain;
}

.logo-panel.pu {
  border-color: rgba(49, 110, 210, 0.36);
  background: linear-gradient(180deg, #f7f9fd, #e4ebf7);
}

.logo-panel.pu img {
  width: min(92%, 360px);
  max-height: 116px;
}

.offer-mini {
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(81, 168, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(7, 84, 201, 0.08);
  padding: 1rem;
}

.offer-mini strong {
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.offer-mini span {
  color: var(--muted);
  font-size: 0.92rem;
}

.brand-hero {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 2rem;
}

.brand-hero .image-link {
  width: min(100%, 310px);
}

.brand-hero img {
  aspect-ratio: auto;
  border: 0;
  object-fit: contain;
}

.brand-hero .caption {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
}

.product-hero-card {
  width: min(100%, 390px);
  justify-self: end;
}

.product-hero-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.purchase-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(214, 182, 74, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(29, 29, 27, 0.96), rgba(9, 9, 9, 0.96));
  padding: 1.2rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.purchase-panel.partner-primary {
  border-color: rgba(81, 168, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(7, 84, 201, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(29, 29, 27, 0.96), rgba(7, 9, 14, 0.96));
}

.purchase-panel.secondary-path {
  border-color: rgba(255, 255, 255, 0.1);
}

.purchase-panel.compact {
  margin-top: 0;
  box-shadow: none;
}

.purchase-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.purchase-top p,
.source-note {
  color: var(--muted);
}

.price-pill {
  min-width: 132px;
  border: 1px solid rgba(214, 182, 74, 0.36);
  border-radius: var(--radius);
  background: rgba(214, 182, 74, 0.08);
  padding: 0.8rem 0.9rem;
  text-align: center;
}

.price-pill strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.55rem;
  line-height: 1;
}

.price-pill span {
  color: var(--dim);
  font-size: 0.78rem;
}

.price-pill.blue {
  border-color: rgba(81, 168, 255, 0.38);
  background: rgba(7, 84, 201, 0.13);
}

.price-pill.blue strong {
  color: #dceeff;
}

.price-pill s {
  display: block;
  color: var(--dim);
  font-size: 0.9rem;
  text-decoration-color: rgba(244, 240, 230, 0.5);
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.source-note {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.8rem;
  font-size: 0.88rem;
}

.dual-path {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
}

.path-card {
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.35rem;
}

.path-card.primary {
  border-color: rgba(81, 168, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(7, 84, 201, 0.18), transparent 52%),
    var(--surface);
}

.path-card h3 {
  margin-bottom: 0.65rem;
}

.path-card p {
  color: var(--muted);
}

.offer-amount {
  color: var(--gold-soft);
  font-size: clamp(3.6rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
}

.offer-amount small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.partner-band {
  border-top: 1px solid rgba(81, 168, 255, 0.22);
  border-bottom: 1px solid rgba(81, 168, 255, 0.18);
  background:
    linear-gradient(100deg, rgba(214, 182, 74, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(7, 25, 52, 0.64), rgba(10, 10, 10, 0.98));
}

.logo-lockup {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.logo-lockup img {
  max-height: 68px;
  width: auto;
}

.logo-lockup .pu-main {
  max-width: min(100%, 350px);
  max-height: 62px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.15rem;
}

.steps li::before {
  content: counter(step);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(81, 168, 255, 0.45);
  border-radius: 50%;
  background: rgba(7, 84, 201, 0.14);
  color: #dceeff;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: stretch;
}

.reassign-card {
  border-color: rgba(81, 168, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(7, 84, 201, 0.16), transparent 50%),
    var(--surface);
}

.reassign-card strong {
  color: var(--text);
}

.disclaimer-line {
  color: var(--dim);
  font-size: 0.86rem;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.proof-badges li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.4rem 0.66rem;
}

.download-panel {
  display: grid;
  gap: 0.7rem;
  border: 1px dashed rgba(81, 168, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(7, 84, 201, 0.07);
  padding: 1rem;
}

.download-panel strong {
  color: #dceeff;
}

.download-panel span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 750;
}

.faq-list p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--line-soft);
  overflow: hidden;
}

.quick-fact {
  min-height: 92px;
  background: rgba(17, 17, 17, 0.95);
  padding: 1rem;
}

.quick-fact strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
}

.quick-fact span {
  color: var(--dim);
  font-size: 0.9rem;
}

.section {
  padding: clamp(3.4rem, 7vw, 6.4rem) 0;
  border-top: 1px solid var(--line-soft);
}

.section.alt {
  background: var(--bg-2);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--muted);
}

.text-stack {
  display: grid;
  gap: 1rem;
}

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

.dim {
  color: var(--dim);
}

.gold {
  color: var(--gold-soft);
}

.mt-1 {
  margin-top: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.proof-card,
.product-card,
.note,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.card,
.proof-card,
.product-card,
.note {
  padding: 1.35rem;
}

.card h3,
.proof-card h3,
.product-card h3 {
  margin-bottom: 0.7rem;
}

.card p,
.proof-card p,
.product-card p {
  color: var(--muted);
}

.product-card {
  display: grid;
  gap: 1rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  object-fit: cover;
}

.product-card.featured {
  border-color: rgba(214, 182, 74, 0.5);
  background: var(--surface-2);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  font-size: 0.82rem;
  padding: 0.32rem 0.62rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

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

.metric-strip > div {
  min-height: 112px;
  background: var(--surface);
  padding: 1rem;
}

.metric-strip strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.85rem;
  line-height: 1.1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-link {
  display: block;
  color: inherit;
}

.image-link img {
  transition: transform 180ms ease, opacity 180ms ease;
}

.image-link:hover img {
  transform: translateY(-2px);
  opacity: 0.92;
}

.proof-dashboard {
  display: grid;
  gap: 1rem;
}

.performance-hero {
  padding: 1.6rem 0 2.2rem;
}

.performance-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: 1.4rem;
  align-items: center;
}

.performance-intro h1 {
  font-size: 3.45rem;
  line-height: 1;
}

.performance-intro .lead {
  margin-top: 0;
}

.performance-hero-copy {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.performance-hero-copy .lead {
  max-width: 760px;
}

.hero-proof-dashboard {
  margin-top: 0.85rem;
}

.proof-hero-metrics {
  margin-top: 1rem;
  border-color: rgba(214, 182, 74, 0.38);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.chart-focus .chart-head {
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.45fr);
  align-items: end;
  padding: 0.95rem 1rem 0.7rem;
}

.performance-actions {
  margin-top: 0;
}

.chart-head {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.2rem 0;
}

.chart-head p {
  color: var(--muted);
}

.stat-card {
  display: grid;
  gap: 0.45rem;
  min-height: 150px;
}

.stat-card strong {
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.proof-media {
  margin: 0;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  overflow: hidden;
}

.proof-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.chart-scroll {
  overflow-x: auto;
  scrollbar-color: rgba(214, 182, 74, 0.52) rgba(255, 255, 255, 0.06);
}

.chart-focus img {
  aspect-ratio: 1280 / 700;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  height: auto;
}

.proof-media figcaption {
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
}

.journal-chart {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #141414, #090909);
  padding: 1rem;
}

.journal-chart svg {
  width: 100%;
  height: auto;
}

.journal-chart text {
  fill: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
}

.journal-chart .axis {
  stroke: rgba(244, 240, 230, 0.18);
  stroke-width: 1;
}

.journal-chart .gain {
  stroke: var(--gold-soft);
  stroke-width: 3;
  fill: none;
}

.journal-chart .loss {
  stroke: #cfc9bd;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 5 5;
}

.trade-table td.positive {
  color: #d8f5bf;
}

.trade-table td.negative {
  color: #f0b4a8;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.2rem;
}

.timeline-item time {
  color: var(--gold-soft);
  font-weight: 700;
}

.timeline-item ul {
  color: var(--muted);
}

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

.table-wrap.compact-table .data-table {
  min-width: 460px;
}

.table-wrap.wide-table .data-table {
  min-width: 760px;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line-soft);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--silver);
  font-size: 0.85rem;
  text-transform: uppercase;
}

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

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

.notice {
  border-left: 3px solid var(--gold);
  background: rgba(214, 182, 74, 0.08);
  color: var(--muted);
  padding: 1rem;
}

.notice.blue {
  border-left-color: var(--blue-soft);
  background: rgba(7, 84, 201, 0.1);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.social-link {
  display: grid;
  min-height: 160px;
  align-content: space-between;
  gap: 0.85rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 1.15rem;
}

.social-link:hover {
  border-color: rgba(214, 182, 74, 0.5);
  background: var(--surface-2);
  color: var(--text);
}

.social-link img {
  width: 32px;
  height: 32px;
}

.social-link strong {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-size: 1.1rem;
}

.social-link span {
  display: block;
  min-width: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.social-link.contact-action {
  gap: 1rem;
  overflow: hidden;
}

.contact-address {
  display: block;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-address:hover {
  color: var(--gold-soft);
}

.social-link.contact-action .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-link.contact-action .button {
  min-height: 38px;
  padding: 0.48rem 0.72rem;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line-soft);
  padding: 0.8rem 0;
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--dim);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.legal-body {
  max-width: 900px;
}

.legal-body h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-body ul {
  display: grid;
  gap: 0.55rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  z-index: 40;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 0.8rem;
}

.skip-link:focus {
  left: 0.5rem;
}

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

  h2 {
    font-size: 2.45rem;
  }

  .lead {
    font-size: 1.15rem;
  }

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

  .site-nav {
    position: absolute;
    top: 92px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0b0b0b;
    padding: 0.6rem;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.75rem 0.85rem;
  }

  .hero-grid,
  .home-hero .hero-grid,
  .performance-intro,
  .section-head,
  .dual-path,
  .split-panel,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .campaign-bar {
    top: 92px;
  }

  .campaign-bar-inner {
    display: grid;
    gap: 0.15rem;
    padding-block: 0.55rem;
  }

  .home-hero h1,
  .performance-intro h1 {
    font-size: 3.8rem;
  }

  .product-hero-card {
    justify-self: start;
  }

  .chart-focus .chart-head {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .quick-facts,
  .steps,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    width: min(100% - 1.1rem, var(--max));
  }

  .brand small {
    display: none;
  }

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

  .hero {
    padding-top: 3rem;
  }

  .campaign-bar {
    position: static;
  }

  .campaign-bar-inner {
    font-size: 0.82rem;
  }

  .home-hero h1,
  .performance-intro h1 {
    font-size: 2.65rem;
  }

  .performance-hero {
    padding-top: 1.35rem;
  }

  .chart-focus img {
    width: 760px;
    max-width: none;
    height: auto;
  }

  .chart-scroll {
    direction: rtl;
    margin-inline: -0.35rem;
  }

  .chart-scroll img {
    direction: ltr;
  }

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

  .proof-hero-metrics > div {
    min-height: 96px;
    padding: 0.9rem;
  }

  .proof-hero-metrics strong {
    font-size: 1.45rem;
  }

  .hero-actions,
  .button-row,
  .purchase-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .purchase-top {
    display: grid;
  }

  .price-pill {
    min-width: 0;
    text-align: left;
  }

  .metric-strip,
  .quick-facts,
  .steps,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-amount {
    font-size: 3.6rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
