/* =========================================================
   IKE'S EDGE WEBSITE
   Global Styles
========================================================= */

:root {
  --bg-dark: #07111f;
  --bg-dark-2: #0b1727;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --blue: #1677ff;
  --blue-bright: #2e8cff;
  --blue-dark: #0d55c7;
  --green: #22a447;
  --green-dark: #177a35;
  --green-rgb: 34, 164, 71;
  --orange: #f59e0b;
  --text-dark: #111827;
  --text-mid: #4b5563;
  --text-light: #d8e0ea;
  --text-white: #ffffff;
  --border-light: #dce3eb;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --max-width: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 90px;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
   LAYOUT
========================================================= */

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

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

.section-dark {
  background:
    linear-gradient(
      135deg,
      #07111f 0%,
      #0a1524 50%,
      #07111f 100%
    );
  color: var(--text-white);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-mid);
}

.eyebrow {
  color: var(--blue-bright);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading-pair .eyebrow {
  display: block;
  color: var(--text-dark);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.section-heading-pair h2 {
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.section-heading-pair p {
  font-size: 1.18rem;
  line-height: 1.7;
}

.section-heading-pair-dark .eyebrow {
  color: #eef3f8;
}

.section-heading-pair-dark p {
  color: var(--text-light);
}

.section-heading-pair-inline {
  text-align: left;
}

.section-heading-pair-inline .eyebrow,
.section-heading-pair-inline h2,
.section-heading-pair-inline p {
  max-width: 720px;
}

.difference-section {
  padding-top: 52px;
  padding-bottom: 48px;
}

.difference-section .section-heading {
  margin-bottom: 24px;
}

.difference-section .section-heading-pair-dark .eyebrow {
  color: #f2f6fb;
}

.difference-section .section-heading-pair-dark h2 {
  color: var(--blue-bright);
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--text-white);
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(22, 119, 255, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 119, 255, 0.32);
}

.button-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--text-white);
  box-shadow: 0 8px 22px rgba(var(--green-rgb), 0.24);
}

.button-green:hover {
  box-shadow: 0 12px 28px rgba(var(--green-rgb), 0.34);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-outline-light {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.button-secondary {
  background: linear-gradient(135deg, #5e6876, #353e49);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 11, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e5e7eb;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:not(.button) {
  position: relative;
}

.main-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:not(.button):hover::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text-white);
  font-size: 1.8rem;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(17, 88, 210, 0.23),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #050c16 0%,
      #081322 55%,
      #07111f 100%
    );
  color: var(--text-white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(25, 115, 255, 0.16),
      transparent 35%
    ),
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 55%,
      rgba(30, 110, 255, 0.05) 100%
    );
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(46, 140, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 140, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 95%);
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 55px;
  align-items: center;
  padding-top: 55px;
  padding-bottom: 55px;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  font-size: clamp(3.2rem, 4.5vw, 4.8rem);
  line-height: 0.98;
}

.hero-content h1 span {
  color: var(--blue-bright);
}

.hero-description {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #d1d9e3;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  color: #d6dde6;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  color: var(--blue-bright);
}

.hero-disclaimer {
  margin-top: 16px;
  color: #98a5b6;
  font-size: 0.84rem;
  line-height: 1.6;
}


/* =========================================================
   HERO PREVIEW
========================================================= */

.hero-visual {
  position: relative;
}

.dashboard-card {
  position: relative;
  min-height: 540px;
  max-width: 560px;
  margin-left: auto;
  padding: 12px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(14, 27, 46, 0.96),
      rgba(4, 10, 18, 0.99)
    );
  border: 1px solid rgba(65, 131, 255, 0.4);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(20, 93, 220, 0.18);
  transform:
    perspective(1000px)
    rotateY(-4deg)
    rotateX(1deg);
}

.dealer-preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 9, 19, 0.18) 0%,
      rgba(3, 9, 19, 0.02) 18%,
      rgba(3, 9, 19, 0) 63%,
      rgba(3, 9, 19, 0.38) 100%
    );
}

.dealer-preview-image {
  width: 100%;
  height: 516px;
  object-fit: cover;
  object-position: 50% 0%;
  transform: scale(1.12) translateY(-10px);
  transform-origin: center top;
  border-radius: 12px;
}

.preview-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 9px 14px;
  color: var(--text-white);
  background: rgba(5, 14, 27, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(87, 149, 255, 0.34);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-badge-secondary {
  top: 22px;
  right: 22px;
  bottom: auto;
  left: auto;
  color: #d9e4f2;
  background: rgba(7, 17, 31, 0.74);
  border-color: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   ROTATING HERO PANELS
========================================================= */

.rotating-hero-card {
  position: relative;
  max-width: 580px;
  min-height: 540px;
  margin-left: auto;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 27, 46, 0.96), rgba(4, 10, 18, 0.99));
  border: 1px solid rgba(65, 131, 255, 0.4);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(20, 93, 220, 0.18);
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
}

.rotating-panel-track {
  position: relative;
  min-height: 474px;
}

.rotating-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.rotating-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.panel-copy {
  position: relative;
  z-index: 3;
  padding: 18px 18px 0;
}

.panel-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: #d9e4f2;
  background: rgba(7, 17, 31, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.panel-copy h2 {
  max-width: 470px;
  color: var(--text-white);
  font-size: clamp(1.72rem, 2.45vw, 2.35rem);
  letter-spacing: 0;
}

.panel-copy p {
  max-width: 455px;
  margin-top: 10px;
  color: #c8d4e1;
  font-size: 1rem;
  line-height: 1.58;
}

.panel-image-frame {
  position: relative;
  min-height: 284px;
  overflow: hidden;
  border-radius: 14px;
}

.panel-image-frame .dealer-preview-image {
  height: 318px;
  transform: scale(1.1) translateY(-8px);
}

.promo-panel-card,
.performance-mini-card,
.strategy-tile-stack,
.pin-graphic,
.portfolio-preview-card {
  position: relative;
  z-index: 2;
  margin: 0 18px 18px;
}

.promo-panel-card {
  display: grid;
  place-items: center;
  min-height: 238px;
  padding: 26px;
  background:
    radial-gradient(circle at 74% 24%, rgba(245, 158, 11, 0.18), transparent 34%),
    linear-gradient(145deg, #0b1727, #050c16);
  border: 1px solid rgba(46, 140, 255, 0.32);
  border-radius: 14px;
}

.promo-panel-card span {
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.promo-panel-card a {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.28);
  font-weight: 800;
  transform: translateX(-50%);
  white-space: nowrap;
}

.trial-preview-panel .panel-copy h2 span {
  color: var(--blue-bright);
}

.trial-preview-panel .panel-kicker {
  position: absolute;
  top: 14px;
  right: 16px;
  margin-bottom: 0;
  color: #78b4ff;
  background: rgba(22, 119, 255, 0.12);
  border-color: rgba(46, 140, 255, 0.42);
  box-shadow: 0 10px 24px rgba(22, 119, 255, 0.16);
  font-size: 0.74rem;
  transform: rotate(6deg);
}

.trial-preview-panel {
  justify-content: center;
  gap: 12px;
}

.trial-preview-panel .panel-copy h2 {
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.02;
}

.trial-preview-panel .panel-copy p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.trial-panel-card {
  position: relative;
  z-index: 2;
  margin: 0 18px 18px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(46, 140, 255, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(9, 22, 40, 0.98), rgba(3, 9, 18, 0.99));
  border: 1px solid rgba(46, 140, 255, 0.44);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(22, 119, 255, 0.16);
}

.trial-panel-watermark {
  position: absolute;
  right: -16px;
  bottom: -10px;
  width: 168px;
  opacity: 0.08;
  filter: grayscale(1);
  pointer-events: none;
}

.trial-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.trial-feature-tile {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.trial-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #9cc8ff;
  background: rgba(22, 119, 255, 0.12);
  border: 1px solid rgba(46, 140, 255, 0.22);
  border-radius: 8px;
}

.trial-feature-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trial-feature-tile strong {
  display: block;
  color: #f4f9ff;
  font-size: 0.82rem;
  line-height: 1.2;
}

.trial-feature-tile p {
  margin-top: 5px;
  color: #b8c8da;
  font-size: 0.68rem;
  line-height: 1.35;
}

.trial-panel-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  padding: 0 18px;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.28);
  font-weight: 900;
}

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

.performance-mini-card div,
.strategy-tile-stack span,
.portfolio-preview-card span {
  padding: 17px 15px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.performance-mini-card strong {
  display: block;
  color: #f4f9ff;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.1;
}

.performance-mini-card span {
  display: block;
  margin-top: 5px;
  color: #b8c5d4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.panel-disclosure {
  margin: 0 18px 20px;
  color: #9cacbf;
  font-size: 0.78rem;
  line-height: 1.55;
}

.strategy-tile-stack,
.portfolio-preview-card {
  display: grid;
  gap: 10px;
}

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

.strategy-tile-stack span,
.portfolio-preview-card span {
  color: #e6eef9;
  font-size: 0.92rem;
  font-weight: 800;
}

.strategy-tile-stack span:first-child {
  border-color: rgba(245, 158, 11, 0.48);
  color: #ffce73;
}

.pin-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 256px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at 76% 20%, rgba(46, 140, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(8, 19, 35, 0.98), rgba(3, 9, 18, 0.99));
  border: 1px solid rgba(46, 140, 255, 0.34);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.pin-chart-grid,
.pin-watermark,
.pin-range,
.pin-zone,
.pin-marker {
  position: absolute;
  pointer-events: none;
}

.pin-chart-grid {
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
}

.pin-watermark {
  right: -18px;
  bottom: -8px;
  width: 170px;
  opacity: 0.07;
  filter: grayscale(1);
}

.pin-range-line {
  position: relative;
  z-index: 2;
  width: min(82%, 410px);
  height: 120px;
}

.pin-range-line::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122, 177, 255, 0.52), transparent);
}

.pin-range {
  left: 50%;
  height: 18px;
  border: 1px solid rgba(46, 140, 255, 0.46);
  border-radius: 999px;
  transform: translateX(-50%);
}

.pin-range-wide {
  top: 49px;
  width: 100%;
  background: rgba(22, 119, 255, 0.06);
}

.pin-range-mid {
  top: 49px;
  width: 56%;
  background: rgba(22, 119, 255, 0.12);
  border-color: rgba(46, 140, 255, 0.72);
  box-shadow: 0 0 26px rgba(22, 119, 255, 0.22);
}

.pin-zone {
  top: 40px;
  left: 50%;
  width: 74px;
  height: 36px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(255, 205, 120, 0.88);
  border-radius: 999px;
  box-shadow:
    0 0 28px rgba(245, 158, 11, 0.36),
    inset 0 0 18px rgba(245, 158, 11, 0.16);
  transform: translateX(-50%);
}

.pin-marker {
  top: 20px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.68);
  transform: translateX(-50%);
}

.pin-zone-label {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 14px 16px;
  color: var(--text-white);
  background: rgba(5, 14, 27, 0.78);
  border: 1px solid rgba(255, 205, 120, 0.3);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.pin-zone-label strong {
  color: #ffce73;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.pin-zone-label span {
  color: #cbd8e7;
  font-size: 0.78rem;
  font-weight: 800;
}

.pin-callout {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  color: #dceaff;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(46, 140, 255, 0.24);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pin-callout-left {
  left: 22px;
  bottom: 34px;
}

.pin-callout-top {
  top: 26px;
  left: 50%;
  color: #9cc8ff;
  transform: translateX(-50%);
}

.pin-callout-right {
  right: 22px;
  bottom: 34px;
  color: #ffce73;
}

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

.portfolio-preview-card span {
  min-height: 76px;
  color: #edf7f0;
  border-color: rgba(69, 201, 107, 0.18);
  box-shadow: inset 3px 0 0 rgba(69, 201, 107, 0.8);
}

.portfolio-preview-card > span {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.portfolio-preview-card > span svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: #9ff1b6;
  background: rgba(var(--green-rgb), 0.12);
  border: 1px solid rgba(69, 201, 107, 0.24);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-preview-card > span strong {
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.2;
}

.portfolio-preview-card-momentum span:nth-child(2),
.portfolio-preview-card-income span:nth-child(1),
.portfolio-preview-card-covered span:nth-child(2) {
  box-shadow: inset 3px 0 0 rgba(245, 158, 11, 0.76);
}

.portfolio-preview-card-momentum span:nth-child(2) svg,
.portfolio-preview-card-income span:nth-child(1) svg,
.portfolio-preview-card-covered span:nth-child(2) svg {
  color: #ffce73;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.stock-rotating-card {
  background:
    linear-gradient(145deg, rgba(14, 31, 38, 0.98), rgba(4, 12, 19, 0.99));
  border-color: rgba(69, 201, 107, 0.38);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 52px rgba(34, 164, 71, 0.14);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.stock-rotating-card .panel-kicker,
.stock-rotating-card .rotating-panel-indicators button.is-active {
  background: rgba(var(--green-rgb), 0.2);
  border-color: rgba(69, 201, 107, 0.42);
}

.stock-rotating-card .panel-copy h2 {
  color: #55d879;
}

.stock-rotating-card .rotating-panel-indicators button:hover {
  border-color: rgba(69, 201, 107, 0.7);
}

.stock-trial-preview-panel .panel-kicker {
  color: #8ff0aa;
  background: rgba(var(--green-rgb), 0.16);
  border-color: rgba(69, 201, 107, 0.46);
  box-shadow: 0 10px 24px rgba(var(--green-rgb), 0.16);
}

.stock-trial-preview-panel .panel-copy h2 span {
  color: #55d879;
}

.stock-trial-preview-panel .trial-panel-card {
  background:
    radial-gradient(circle at 84% 12%, rgba(69, 201, 107, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(9, 31, 22, 0.98), rgba(3, 12, 10, 0.99));
  border-color: rgba(69, 201, 107, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(var(--green-rgb), 0.14);
}

.stock-trial-preview-panel .trial-feature-icon {
  color: #9ff1b6;
  background: rgba(var(--green-rgb), 0.12);
  border-color: rgba(69, 201, 107, 0.24);
}

.stock-trial-preview-panel .trial-feature-tile {
  border-color: rgba(69, 201, 107, 0.12);
}

.stock-trial-preview-panel .trial-panel-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 30px rgba(var(--green-rgb), 0.26);
}

.rotating-panel-indicators {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.rotating-panel-indicators button {
  width: 34px;
  height: 9px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition:
    width 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.rotating-panel-indicators button:hover,
.rotating-panel-indicators button:focus-visible {
  border-color: rgba(46, 140, 255, 0.7);
  outline: none;
}

.rotating-panel-indicators button.is-active {
  width: 46px;
  background: var(--blue-bright);
  border-color: rgba(46, 140, 255, 0.78);
}


/* =========================================================
   SERVICES
========================================================= */

.services-container {
  width: min(95%, 1320px);
}

.services-heading {
  margin-bottom: 30px;
}

.services-heading p {
  margin-top: 0;
  margin-bottom: 28px;
  color: #384354;
  font-size: clamp(1.375rem, 1.9vw, 1.5rem);
  font-weight: 600;
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 34px 30px;
  overflow: hidden;
  color: var(--text-white);
  background:
    linear-gradient(
      145deg,
      #111b28,
      #060c13
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(92, 113, 139, 0.2),
      transparent 70%
    );
}

.product-card-blue {
  border-color: rgba(32, 124, 255, 0.65);
}

.product-card-blue::after {
  background:
    radial-gradient(
      circle,
      rgba(22, 119, 255, 0.34),
      transparent 70%
    );
}

.product-label {
  color: #99abc0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.product-card h3 {
  margin: 8px 0 14px;
  font-size: 2rem;
}

.product-card-blue h3 {
  color: var(--blue-bright);
}

.product-card-stock h3 {
  color: var(--green);
}

.product-description {
  margin-bottom: 26px;
  color: #bac4cf;
  font-size: 1.04rem;
  line-height: 1.75;
}

.feature-list {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-bottom: 30px;
  list-style: none;
}

.feature-list li {
  margin-bottom: 11px;
  color: #e2e8ef;
  font-size: 1.02rem;
  line-height: 1.72;
}

.feature-list li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--blue-bright);
  font-weight: 900;
}

.product-card-stock .feature-list li::before {
  color: var(--green);
}

.product-card-pricing {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.product-card-pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.product-card-pricing-blue {
  border-color: rgba(46, 140, 255, 0.28);
  box-shadow: inset 3px 0 0 rgba(46, 140, 255, 0.8);
}

.product-card-pricing-green {
  border-color: rgba(var(--green-rgb), 0.3);
  box-shadow: inset 3px 0 0 rgba(var(--green-rgb), 0.82);
}

.product-card-price {
  min-width: 0;
  color: var(--text-white);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.product-card-price span {
  color: #b9c5d2;
  font-size: 0.86rem;
  font-weight: 800;
}

.product-card-trial {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-pricing-blue .product-card-trial {
  color: #dbeaff;
  background: rgba(46, 140, 255, 0.16);
  border: 1px solid rgba(46, 140, 255, 0.36);
}

.product-card-pricing-green .product-card-trial {
  color: #dff8e6;
  background: rgba(var(--green-rgb), 0.16);
  border: 1px solid rgba(var(--green-rgb), 0.38);
}

.product-card-pricing p {
  color: #9facbb;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.product-card-button {
  align-self: center;
  margin-top: auto;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
}

.benefit-card {
  padding: 14px 28px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.benefit-icon-orange {
  color: var(--orange);
  box-shadow:
    inset 0 0 18px rgba(245, 158, 11, 0.12),
    0 0 18px rgba(245, 158, 11, 0.08);
}

.benefit-icon-green {
  color: var(--green);
  box-shadow:
    inset 0 0 18px rgba(var(--green-rgb), 0.12),
    0 0 18px rgba(var(--green-rgb), 0.08);
}

.benefit-icon-blue {
  color: var(--blue-bright);
  box-shadow:
    inset 0 0 18px rgba(46, 140, 255, 0.12),
    0 0 18px rgba(46, 140, 255, 0.08);
}

.benefit-icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 8px;
  color: var(--text-white);
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-card p {
  color: #bec8d3;
  font-size: 0.94rem;
  line-height: 1.52;
}

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

.difference-pillar {
  padding-top: 18px;
  padding-bottom: 18px;
}

.difference-pillar h3 {
  font-size: 1rem;
}

.difference-pillar p {
  max-width: 300px;
  margin: 0 auto;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.experience-section {
  padding-top: 72px;
}

.experience-image-frame {
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(14, 27, 46, 0.96),
      rgba(4, 10, 18, 0.99)
    );
  border: 1px solid rgba(67, 94, 126, 0.8);
  border-radius: 18px;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(22, 119, 255, 0.11);
}

.experience-image {
  width: 100%;
  height: auto;
  max-height: 510px;
  object-fit: contain;
  object-position: center;
}

.experience-visual {
  margin-left: -40px;
}

.experience-content .eyebrow,
.experience-content h2 {
  max-width: 620px;
}

.experience-content h2 {
  color: var(--blue);
}

.experience-content > p {
  max-width: 640px;
  font-size: clamp(1.25rem, 1.7vw, 1.375rem);
  line-height: 1.8;
}

.process-list {
  margin-top: 34px;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.process-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 119, 255, 0.45);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
}

.process-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.06rem;
}

.process-item p {
  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   COMMUNITY
========================================================= */

.community-section {
  background:
    radial-gradient(circle at 82% 30%, rgba(34, 164, 71, 0.14), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(22, 119, 255, 0.15), transparent 36%),
    #07111f;
  color: var(--text-white);
}

.community-home-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.community-home-content h2 {
  color: var(--text-white);
}

.community-home-content > p {
  color: #cbd6df;
}

.community-subheading {
  color: #e8f1fb !important;
  font-weight: 700;
}

.community-mockup-panel {
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 27, 46, 0.96), rgba(4, 10, 18, 0.99));
  border: 1px solid rgba(46, 140, 255, 0.28);
  border-radius: 14px;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(34, 164, 71, 0.09);
}

.community-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  color: #edf5ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.community-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue-bright);
  background: rgba(46, 140, 255, 0.1);
  border: 1px solid rgba(46, 140, 255, 0.28);
  border-radius: 999px;
}

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

.community-mockup-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.community-mockup-list span {
  display: block;
  padding: 15px 16px;
  color: #e6eef9;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
}

.community-mockup-blue {
  box-shadow: inset 3px 0 0 rgba(46, 140, 255, 0.82);
}

.community-mockup-green {
  box-shadow: inset 3px 0 0 rgba(var(--green-rgb), 0.82);
}

.community-mockup-orange {
  box-shadow: inset 3px 0 0 rgba(245, 158, 11, 0.82);
}


/* =========================================================
   RESULTS
========================================================= */

.results-section {
  position: relative;
  padding: 54px 0 48px;
  background:
    radial-gradient(
      circle at center,
      rgba(19, 76, 177, 0.16),
      transparent 50%
    ),
    #07111f;
  color: var(--text-white);
}

.results-section .container {
  position: relative;
}

.signature-ribbon {
  position: absolute;
  top: 2px;
  left: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: var(--text-white);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-10deg);
  transform-origin: left center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
}

.metric-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 112px;
  padding: 16px 14px 15px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(23, 41, 65, 0.92),
      rgba(8, 17, 29, 0.92)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(46, 140, 255, 0.18);
}

.performance-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 9px;
  color: var(--blue-bright);
  border: 1px solid rgba(46, 140, 255, 0.55);
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.08);
  box-shadow: inset 0 0 14px rgba(46, 140, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.performance-icon-small {
  width: 24px;
  height: 24px;
  margin: 0 0 0;
  font-size: 0.68rem;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(46, 140, 255, 0.55);
}

.metric-value {
  color: #f4f9ff;
  font-size: clamp(1.75rem, 2.35vw, 2.16rem);
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  margin-top: 6px;
  color: #c3cedb;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.performance-detail-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding: 11px 12px;
  background: rgba(10, 21, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
}

.performance-detail-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-areas:
    "icon label"
    "icon value";
  align-items: center;
  column-gap: 8px;
  row-gap: 1px;
  min-width: 0;
  text-align: left;
}

.performance-detail-item .performance-icon {
  grid-area: icon;
}

.performance-detail-label {
  grid-area: label;
}

.performance-detail-value {
  grid-area: value;
}

.performance-detail-label {
  color: #90a1b7;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-detail-value {
  color: #eef4fb;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.performance-statement {
  position: relative;
  margin-top: 16px;
  padding-top: 13px;
  color: #e6eef9;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.performance-statement::before {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(46, 140, 255, 0.7);
}

.performance-disclosure {
  margin-top: 8px;
  color: #9cacbf;
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.results-snapshot-section {
  padding: 46px 0 42px;
}

.results-snapshot-heading {
  margin-bottom: 22px;
}

.snapshot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.snapshot-metric {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 16px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(23, 41, 65, 0.92), rgba(8, 17, 29, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(46, 140, 255, 0.18);
}

.results-snapshot-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.transparency-section {
  padding: 58px 0 52px;
  background:
    radial-gradient(circle at 84% 26%, rgba(245, 158, 11, 0.12), transparent 36%),
    #07111f;
  color: var(--text-white);
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.transparency-copy h2 {
  color: var(--blue-bright);
}

.transparency-copy > p {
  color: #cbd6df;
}

.transparency-list-panel {
  margin-top: 24px;
  padding: 22px;
  background: rgba(10, 21, 36, 0.66);
  border: 1px solid rgba(46, 140, 255, 0.18);
  border-radius: 10px;
}

.transparency-list-panel h3 {
  margin-bottom: 14px;
  color: #f4f9ff;
  font-size: 1.04rem;
}

.transparency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  list-style: none;
}

.transparency-list li {
  color: #d7e1ed;
  font-size: 0.94rem;
  line-height: 1.5;
}

.transparency-list li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.transparency-snapshot {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(23, 41, 65, 0.92), rgba(8, 17, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.snapshot-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #ffdfa2;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transparency-snapshot h3 {
  color: var(--text-white);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.transparency-snapshot-metrics {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.transparency-snapshot-metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.transparency-snapshot-metrics strong {
  color: #f4f9ff;
  font-size: 1.2rem;
  line-height: 1.15;
}

.transparency-snapshot-metrics span {
  color: #aebdce;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.transparency-snapshot .button {
  width: 100%;
}

.transparency-snapshot .performance-disclosure {
  margin-top: 14px;
}

.transparency-section-light {
  background:
    radial-gradient(circle at 84% 26%, rgba(245, 158, 11, 0.14), transparent 36%),
    var(--bg-light);
  color: var(--text-dark);
}

.transparency-section-light .transparency-copy h2 {
  color: var(--blue);
}

.transparency-section-light .transparency-copy > p {
  color: var(--text-mid);
}

.transparency-section-light .transparency-list-panel {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.transparency-section-light .transparency-list-panel h3 {
  color: var(--text-dark);
}

.transparency-section-light .transparency-list li {
  color: var(--text-mid);
}

.transparency-section-light .transparency-snapshot {
  background: var(--bg-white);
  border-color: var(--border-light);
  border-top-color: var(--orange);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.12);
}

.transparency-section-light .transparency-snapshot h3 {
  color: var(--text-dark);
}

.transparency-section-light .transparency-snapshot-metrics div {
  background: #f8fafc;
  border-color: var(--border-light);
}

.transparency-section-light .transparency-snapshot-metrics strong {
  color: var(--text-dark);
}

.transparency-section-light .transparency-snapshot-metrics span {
  color: var(--text-mid);
}

.transparency-section-light .performance-disclosure {
  color: var(--text-mid);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: center;
}

.about-photo-wrap {
  text-align: center;
}

.temporary-photo {
  width: clamp(250px, 24vw, 290px);
  height: auto;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.about-profile-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-content p {
  max-width: 720px;
  margin-bottom: 15px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-highlight {
  color: var(--blue-dark) !important;
  font-weight: 800;
}

.about-section-dark {
  background:
    radial-gradient(circle at 18% 22%, rgba(46, 140, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0b1727 54%, #07111f 100%);
}

.about-section-dark .temporary-photo {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(46, 140, 255, 0.12);
}

.about-section-dark .about-content h2 {
  color: var(--blue-bright);
}

.about-section-dark .about-highlight {
  color: #f8fafc !important;
}


/* =========================================================
   MEMBERSHIP CTA
========================================================= */

.membership-cta {
  padding: 56px 0;
  color: var(--text-white);
  background:
    linear-gradient(
      110deg,
      #07111f 0%,
      #0a2863 60%,
      #07111f 100%
    );
}

.membership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.membership-inner p {
  color: #d6deea;
  font-size: 1.12rem;
  line-height: 1.7;
}

.cta-heading h2 {
  color: #58a6ff;
}

.performance-heading p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.55;
}

.performance-heading {
  margin-bottom: 18px;
}

.membership-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.membership-cta-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 82% 28%, rgba(22, 119, 255, 0.08), transparent 34%),
    var(--bg-light);
}

.membership-cta-light .section-heading-pair .eyebrow {
  color: var(--text-dark);
}

.membership-cta-light .cta-heading h2 {
  color: var(--blue);
}

.membership-cta-light .membership-inner p {
  color: var(--text-mid);
}

.membership-cta-light .button-outline-light {
  color: var(--blue);
  border-color: rgba(22, 119, 255, 0.36);
}

.membership-cta-light .button-outline-light:hover {
  background: rgba(22, 119, 255, 0.08);
}


/* =========================================================
   FAQ
========================================================= */

.faq-container {
  max-width: 1060px;
}

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

.faq-list {
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: transparent;
  border: 0;
  color: var(--text-dark);
  font-weight: 700;
  text-align: left;
}

.faq-question span {
  color: var(--blue);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-section-dark {
  background:
    radial-gradient(circle at 16% 20%, rgba(46, 140, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0a1524 52%, #07111f 100%);
}

.faq-section-dark .section-heading-pair h2 {
  color: var(--blue-bright);
}

.faq-section-dark .faq-list,
.faq-section-dark .faq-item {
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-section-dark .faq-question {
  color: #f4f9ff;
}

.faq-section-dark .faq-question span {
  color: var(--blue-bright);
}

.faq-section-dark .faq-answer p {
  color: #cbd6df;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 60px 0 24px;
  background: #050b13;
  color: var(--text-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  align-items: start;
  column-gap: 56px;
  row-gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

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


/* =========================================================
   IKE'S TRADES DETAIL PAGE
========================================================= */

.nav-current {
  color: var(--text-white);
}

.nav-current::after {
  transform: scaleX(1) !important;
}

.trades-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(17, 88, 210, 0.25), transparent 38%),
    linear-gradient(135deg, #050c16 0%, #081322 55%, #07111f 100%);
  color: var(--text-white);
}

.trades-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  min-height: 690px;
  padding-top: 62px;
  padding-bottom: 64px;
}

.trades-hero-content h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  color: var(--text-white);
  font-size: clamp(3.1rem, 4.5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.trades-hero-content h1 span {
  color: var(--blue-bright);
}

.trades-hero-content > p {
  max-width: 650px;
  color: #d1d9e3;
  font-size: 1.1rem;
  line-height: 1.78;
}

.trades-trust {
  max-width: 720px;
}

.trades-preview-frame {
  max-width: 585px;
  margin-left: auto;
}

.trades-day-section {
  padding-top: 72px;
}

.trades-day-grid,
.strategy-grid,
.fit-grid {
  display: grid;
  gap: 20px;
}

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

.trades-process-card,
.strategy-card,
.fit-card,
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.trades-process-card {
  position: relative;
  padding: 24px 24px 26px;
}

.trades-card-number {
  color: rgba(22, 119, 255, 0.18);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.trades-card-icon {
  position: absolute;
  top: 25px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  border: 1px solid rgba(22, 119, 255, 0.28);
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.06);
  font-weight: 900;
}

.trades-process-card h3,
.strategy-card h3,
.fit-card h3 {
  margin: 15px 0 10px;
  color: var(--text-dark);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trades-process-card p,
.strategy-card p,
.fit-card p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.trades-levels-section {
  background:
    linear-gradient(135deg, #07111f 0%, #0b1727 100%);
  color: var(--text-white);
}

.trades-split,
.lounge-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.trades-image-panel,
.lounge-panel {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 27, 46, 0.96), rgba(4, 10, 18, 0.99));
  border: 1px solid rgba(67, 94, 126, 0.8);
  border-radius: 16px;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(22, 119, 255, 0.11);
}

.trades-levels-image {
  width: 100%;
  height: auto;
}

.trades-copy h2 {
  color: var(--blue);
}

.trades-levels-section .trades-copy .eyebrow {
  color: #f2f6fb;
}

.trades-levels-section .trades-copy h2 {
  color: var(--blue-bright);
}

.trades-levels-section .trades-copy p,
.trades-flow-section .section-heading p,
.trades-dark-note {
  color: var(--text-light);
}

.trades-check-list,
.pricing-list {
  list-style: none;
}

.trades-check-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
}

.trades-check-list li {
  color: inherit;
  line-height: 1.58;
}

.trades-check-list li::before,
.pricing-list li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--blue);
  font-weight: 900;
}

.trades-levels-section .trades-check-list li {
  color: #e2e8ef;
}

.trades-callout {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 14px;
  color: var(--text-white) !important;
  background: rgba(22, 119, 255, 0.12);
  border: 1px solid rgba(46, 140, 255, 0.32);
  border-radius: 999px;
  font-weight: 800;
}

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

.strategy-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-top: 3px solid var(--blue);
}

.strategy-card-signature {
  border-top-color: var(--orange);
}

.strategy-ribbon {
  position: absolute;
  top: 14px;
  right: -36px;
  padding: 6px 38px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: var(--text-white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(16deg);
}

.trades-flow-section,
.trades-final-cta {
  background:
    radial-gradient(circle at center, rgba(19, 76, 177, 0.16), transparent 48%),
    #07111f;
  color: var(--text-white);
}

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

.trade-flow-step {
  position: relative;
  padding: 22px 20px;
  background: rgba(10, 21, 36, 0.74);
  border: 1px solid rgba(46, 140, 255, 0.18);
  border-radius: 12px;
}

.trade-flow-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  color: var(--orange);
  font-weight: 900;
  transform: translateY(-50%);
}

.trade-flow-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-bright);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trade-flow-step p {
  color: #c9d3df;
  font-size: 0.95rem;
  line-height: 1.58;
}

.trades-dark-note {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.lounge-panel {
  padding: 20px;
}

.lounge-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  color: #e6eef9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lounge-panel-header span {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 18px 0 0 rgba(245, 158, 11, 0.9), 36px 0 0 rgba(var(--green-rgb), 0.9);
}

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

.lounge-items span {
  padding: 13px 14px;
  color: #e6eef9;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.trades-note {
  color: var(--blue-dark);
  font-weight: 800;
}

.trades-results-section {
  padding-bottom: 58px;
}

.trades-center-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

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

.fit-card {
  padding: 30px;
}

.fit-card .trades-check-list li::before {
  color: var(--blue);
}

.fit-card-muted {
  background: #f9fafb;
}

.fit-card-muted .trades-check-list li::before {
  content: "\2013";
  color: #8a98a8;
}

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

.pricing-card {
  padding: 30px;
  color: var(--text-dark);
}

.pricing-price {
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
}

.pricing-price span {
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-list {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.pricing-button {
  width: 100%;
}

.pricing-card p {
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 0.88rem;
  text-align: center;
}

.early-pricing-strip {
  padding: 18px 0;
  background: #07111f;
  color: var(--text-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.early-pricing-strip-blue {
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.16), transparent 42%),
    #07111f;
}

.early-pricing-strip-green {
  background:
    linear-gradient(135deg, rgba(var(--green-rgb), 0.18), transparent 42%),
    #07111f;
}

.early-pricing-inner {
  display: grid;
  grid-template-columns: 1.35fr auto auto 1.1fr;
  gap: 18px;
  align-items: center;
}

.early-pricing-label {
  display: block;
  color: #a8b7c8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.early-pricing-inner strong {
  display: block;
  color: var(--text-white);
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.early-pricing-inner strong span {
  color: #aeb8c4;
  font-size: 0.92rem;
}

.early-pricing-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #ffce73;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.early-pricing-strip-green .early-pricing-trial {
  color: #8ee7a5;
  background: rgba(var(--green-rgb), 0.12);
  border-color: rgba(var(--green-rgb), 0.34);
}

.early-pricing-inner .button {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.early-pricing-inner p {
  color: #9facbb;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: right;
}

.trades-final-cta .section-heading {
  margin-bottom: 0;
}

.trades-final-cta h2 {
  color: var(--text-white);
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.trades-final-buttons {
  justify-content: center;
}


/* =========================================================
   STOCK PICKS DETAIL PAGE
========================================================= */

.nav-current-green::after {
  background: var(--green) !important;
}

.stock-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(34, 164, 71, 0.22), transparent 38%),
    linear-gradient(135deg, #050c16 0%, #081a24 55%, #07111f 100%);
  color: var(--text-white);
}

.stock-hero .hero-background {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(53, 194, 96, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 194, 96, 0.07) 1px, transparent 1px);
}

.stock-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 58px;
  align-items: center;
  min-height: 690px;
  padding-top: 62px;
  padding-bottom: 64px;
}

.stock-hero-content h1 {
  max-width: 690px;
  margin: 14px 0 22px;
  color: var(--text-white);
  font-size: clamp(3.1rem, 4.5vw, 4.75rem);
  line-height: 0.98;
}

.stock-hero-content h1 span,
.stock-hero .eyebrow,
.stock-hero .trust-icon {
  color: #45c96b;
}

.stock-hero-content > p {
  max-width: 650px;
  color: #d1d9e3;
  font-size: 1.1rem;
  line-height: 1.78;
}

.stock-trust {
  max-width: 720px;
}

.stock-dashboard,
.portfolio-mockup {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(14, 31, 38, 0.98), rgba(4, 12, 19, 0.99));
  border: 1px solid rgba(69, 201, 107, 0.38);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 52px rgba(34, 164, 71, 0.14);
}

.stock-dashboard {
  max-width: 575px;
  margin-left: auto;
  padding: 22px;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.stock-dashboard-bar,
.portfolio-mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  color: #edf7f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stock-dashboard-bar > span,
.portfolio-mockup-header > span {
  width: 11px;
  height: 11px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 17px 0 0 var(--orange), 34px 0 0 var(--blue);
}

.stock-dashboard-bar strong,
.portfolio-mockup-header strong {
  margin-left: 29px;
  font-size: 0.96rem;
}

.stock-dashboard-bar small {
  margin-left: auto;
  color: #9baab8;
  font-size: 0.72rem;
}

.stock-dashboard-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.stock-dashboard-summary div,
.portfolio-bucket {
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.stock-dashboard-summary small,
.portfolio-bucket small {
  display: block;
  color: #68d285;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.stock-dashboard-summary strong,
.portfolio-bucket strong {
  display: block;
  margin-top: 4px;
  color: #edf7f0;
  font-size: 0.89rem;
  line-height: 1.35;
}

.stock-table {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.stock-table-head,
.stock-table-row {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1.12fr 1.15fr;
  gap: 8px;
  align-items: center;
  padding: 11px 12px;
}

.stock-table-head {
  color: #92a4b3;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.stock-table-row {
  color: #cbd6df;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.stock-table-row strong {
  color: #edf7f0;
}

.stock-table-row small {
  color: #9cabb6;
  font-size: 0.68rem;
}

.status-monitoring,
.status-active {
  display: inline-flex;
  width: fit-content;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 800;
}

.status-monitoring {
  color: #d8e9de;
  background: rgba(34, 164, 71, 0.18);
}

.status-active {
  color: #ffdfa2;
  background: rgba(245, 158, 11, 0.15);
}

.stock-example-note {
  margin-top: 14px;
  color: #91a3af;
  font-size: 0.72rem;
  text-align: center;
}

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

.stock-benefit-card:nth-child(-n + 3) {
  grid-column: span 4;
}

.stock-benefit-card:nth-child(n + 4) {
  grid-column: span 3;
}

.stock-benefit-card {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 15px 36px rgba(15, 23, 42, 0.06);
}

.stock-benefit-card > span,
.stock-flow article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--green-dark);
  background: rgba(var(--green-rgb), 0.1);
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.stock-benefit-card h3 {
  margin: 16px 0 9px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stock-benefit-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.stock-process-section,
.stock-compare-section,
.stock-final-cta {
  background: radial-gradient(circle at center, rgba(24, 129, 57, 0.15), transparent 48%), #07111f;
  color: var(--text-white);
}

.stock-process-section .section-heading-pair-dark h2,
.stock-compare-section .section-heading-pair-dark h2 {
  color: #55d879;
}

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

.stock-flow article {
  position: relative;
  padding: 22px 20px;
  background: rgba(10, 27, 35, 0.76);
  border: 1px solid rgba(69, 201, 107, 0.2);
  border-radius: 8px;
}

.stock-flow article:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  color: var(--orange);
  font-weight: 900;
  transform: translateY(-50%);
}

.stock-flow article h3 {
  margin: 15px 0 7px;
  color: #55d879;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stock-flow article p,
.stock-dark-note {
  color: #c9d7d0;
  font-size: 0.95rem;
  line-height: 1.58;
}

.stock-dark-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.stock-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.portfolio-mockup {
  padding: 20px;
}

.portfolio-bucket {
  margin-top: 13px;
}

.stock-copy h2 {
  color: var(--green-dark);
}

.stock-check-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  list-style: none;
}

.stock-check-list li {
  color: inherit;
  line-height: 1.58;
}

.stock-check-list li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--green);
  font-weight: 900;
}

.stock-note {
  margin-top: 21px;
  color: var(--green-dark) !important;
  font-size: 0.88rem !important;
  font-weight: 800;
}

.stock-fit-section {
  padding-top: 20px;
}

.stock-fit-card .stock-check-list li::before {
  color: var(--green);
}

.stock-caution-list li::before {
  content: "\2013";
  color: #8a98a8 !important;
}

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

.comparison-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  background: rgba(10, 21, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
}

.comparison-stock {
  border-top: 3px solid var(--green);
}

.comparison-trades {
  border-top: 3px solid var(--blue);
}

.comparison-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.comparison-stock .comparison-label,
.comparison-stock h3,
.comparison-stock .stock-check-list li::before {
  color: #55d879;
}

.comparison-trades .comparison-label,
.comparison-trades h3,
.comparison-trades .stock-check-list li::before {
  color: var(--blue-bright);
}

.comparison-card h3 {
  margin: 12px 0;
  font-size: 1.42rem;
}

.comparison-card p {
  color: #c9d3df;
  line-height: 1.68;
}

.comparison-card p strong {
  color: #eef4fb;
}

.comparison-card .stock-check-list {
  flex: 1;
  margin-bottom: 28px;
}

.comparison-card .stock-check-list li {
  color: #e1e8ef;
}

.comparison-card .button {
  align-self: flex-start;
}

.stock-pricing-section {
  background: linear-gradient(135deg, #07111f 0%, #0a2a18 55%, #07111f 100%);
}

.stock-pricing-section .section-heading-pair-dark h2 {
  color: #55d879;
}

.stock-pricing-card .pricing-price {
  color: var(--green-dark);
}

.stock-pricing-list li::before {
  color: var(--green);
}

.stock-final-cta .section-heading {
  margin-bottom: 0;
}

.stock-final-cta h2 {
  color: var(--text-white);
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.stock-final-buttons {
  justify-content: center;
}

/* Performance detail page */
.performance-hero, .methodology-section, .performance-final-cta { background: radial-gradient(circle at 78% 30%, rgba(22, 119, 255, .2), transparent 38%), #07111f; color: var(--text-white); }
.performance-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; min-height: 650px; padding: 62px 0; }
.performance-hero-copy h1 { margin: 14px 0 22px; color: #fff; font-size: clamp(3.1rem,4.5vw,4.75rem); line-height: .98; }.performance-hero-copy h1 span, .performance-framework-card > span, .report-grid b { color: var(--blue-bright); }.performance-hero-copy > p { max-width: 650px; color: #d1d9e3; font-size: 1.1rem; line-height: 1.78; }
.performance-framework-card { display: grid; gap: 18px; padding: 30px; background: linear-gradient(145deg, rgba(14,27,46,.98), rgba(4,10,18,.99)); border: 1px solid rgba(46,140,255,.42); border-radius: 18px; box-shadow: var(--shadow); }
.performance-framework-card > span, .report-grid b { font-size: .72rem; letter-spacing: .09em; }
.performance-framework-card h3 { margin: 0; color: #fff; font-size: clamp(1.85rem, 3vw, 2.25rem); line-height: 1.1; }
.performance-framework-card > p { margin: 0; color: #aebdce; line-height: 1.7; }
.framework-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.framework-mini-card { padding: 18px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); border: 1px solid rgba(159, 190, 228, .18); border-radius: 14px; min-height: 112px; }
.framework-mini-card strong { display: block; margin-bottom: 10px; color: #fff; font-size: 1rem; }
.framework-mini-card p { margin: 0; color: #aebdce; font-size: .95rem; line-height: 1.55; }
.report-grid, .performance-context { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }.report-grid article, .performance-context article { padding: 24px; background: #fff; border: 1px solid var(--border-light); border-top: 3px solid var(--blue); border-radius: 8px; box-shadow: 0 15px 36px rgba(15,23,42,.06); }.report-grid h3 { margin: 12px 0 7px; font-size: 1.08rem; }.report-grid p { line-height: 1.62; }.methodology-section .report-grid article { background: rgba(10,21,36,.76); border-color: rgba(46,140,255,.2); }.methodology-section .report-grid p { color: #c9d3df; }.report-note { max-width: 850px; margin: 26px auto 0; text-align: center; font-weight: 700; }.report-note-dark { color: #c9d3df; }.report-note-balanced { max-width: 760px; line-height: 1.75; text-wrap: balance; }.report-note-context { max-width: 860px; line-height: 1.75; text-wrap: balance; }.performance-context { grid-template-columns: repeat(2,minmax(0,1fr)); }.performance-context h3 { margin-bottom: 14px; }.performance-context ul { padding-left: 20px; }.performance-context li { margin-bottom: 8px; color: var(--text-mid); }.performance-context article:last-child { background: #f9fafb; border-top-color: var(--orange); }.performance-final-cta .section-heading { margin-bottom: 0; }.performance-final-cta h2 { color: #fff; font-size: clamp(2rem,3.3vw,3rem); }
.tracking-dashboard-section .section-heading { max-width: 1040px; margin-left: auto; margin-right: auto; }
.tracking-dashboard-section .section-heading p { color: var(--text-mid); }
.tracking-intro { max-width: 900px; margin-left: auto; margin-right: auto; text-wrap: balance; }
.dashboard-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.dashboard-preview-card { display: grid; gap: 18px; min-width: 0; padding: 22px; background: #fff; border: 1px solid rgba(46,140,255,.16); border-radius: 18px; box-shadow: 0 18px 42px rgba(15, 23, 42, .08); }
.dashboard-preview-card-featured { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .8fr); align-items: center; }
.dashboard-preview-image { display: flex; align-items: center; justify-content: center; min-width: 0; padding: 12px; background: linear-gradient(180deg, rgba(238,244,251,.8), rgba(247,250,253,.95)); border: 1px solid rgba(46,140,255,.14); border-radius: 16px; overflow: hidden; }
.dashboard-preview-image img { display: block; width: 100%; max-height: 430px; object-fit: contain; border-radius: 10px; }
.dashboard-preview-content { min-width: 0; }
.dashboard-preview-content h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.2rem; line-height: 1.25; }
.dashboard-preview-content p { margin: 0; color: var(--text-mid); line-height: 1.7; }
.dashboard-disclosure { margin: 0; color: #aebdce; font-size: .93rem; line-height: 1.7; }
.dashboard-disclosure-strong { width: min(96%, 1150px); max-width: 1150px; margin: 16px auto 0; padding: 16px 18px; background: linear-gradient(180deg, #f5f9ff, #eef5ff); border: 1px solid rgba(46,140,255,.16); border-left: 3px solid var(--orange); border-radius: 10px; color: #26405e; font-size: .96rem; line-height: 1.72; text-wrap: pretty; box-shadow: 0 14px 28px rgba(15,23,42,.06); }
.dashboard-disclosure-footnote { margin-top: 28px; max-width: 980px; color: #5d6d81; text-align: center; margin-left: auto; margin-right: auto; }
.important-context-section .performance-context article { background: rgba(255,255,255,.08); border-color: rgba(46,140,255,.18); box-shadow: none; }
.important-context-section .performance-context article h3 { color: #fff; }
.important-context-section .performance-context article ul { color: #d7e2ee; }
.important-context-section .performance-context li { color: #d7e2ee; }
.important-context-section .performance-context article:last-child { background: rgba(255,255,255,.1); border-top-color: var(--orange); }

@media (max-width: 1024px) { .performance-hero-grid { grid-template-columns: 1fr; min-height: auto; }.report-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.dashboard-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.dashboard-preview-card-featured { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .performance-hero-grid { gap: 38px; padding: 50px 0; }.framework-mini-grid, .report-grid, .performance-context, .dashboard-preview-grid { grid-template-columns: 1fr; }.performance-framework-card { padding: 24px; }.dashboard-preview-card { padding: 18px; }.dashboard-preview-image { padding: 10px; }.report-note-balanced br, .report-note-context br, .tracking-intro br { display: none; }.dashboard-disclosure-strong { padding: 16px 18px; } }

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h4 {
  margin-bottom: 14px;
  color: var(--text-white);
  font-size: 0.85rem;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #aeb8c4;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

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

.footer-disclaimer {
  width: 100%;
  margin-top: 30px;
  padding-top: 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  max-width: 1050px;
  margin: 0 auto;
  color: #8f9aa8;
  font-size: 0.72rem;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 22px;
  padding-bottom: 24px;
  color: #6f7b89;
  font-size: 0.72rem;
  text-align: center;
}


/* =========================================================
   BRAND LOGO
========================================================= */

.site-logo {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
}

.site-logo-footer {
  width: 240px;
  max-width: 100%;
  height: auto;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
    font-size: 0.82rem;
  }

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

  .hero-grid {
    gap: 46px;
  }

  .hero-visual,
  .experience-visual {
    max-width: 760px;
  }

  .dashboard-card {
    margin-left: 0;
    transform: none;
  }

  .rotating-hero-card,
  .stock-rotating-card {
    margin-right: auto;
    margin-left: auto;
    transform: none;
  }

  .experience-visual {
    margin-left: 0;
  }

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

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

  .benefit-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(n + 3) {
    border-bottom: 0;
  }

  .difference-pillar:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .difference-pillar:nth-child(n) {
    border-bottom: 0;
  }

  .community-home-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
  }

  .community-mockup-panel,
  .transparency-snapshot {
    max-width: 720px;
  }

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

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

  .about-photo-wrap {
    text-align: center;
  }

  .temporary-photo {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-columns {
    gap: 32px;
  }

  .trades-hero-grid,
  .trades-split,
  .lounge-grid,
  .pricing-grid,
  .early-pricing-inner,
  .stock-hero-grid,
  .stock-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .trades-hero-grid {
    min-height: auto;
    gap: 44px;
    padding-top: 58px;
  }

  .trades-preview-frame {
    margin-right: auto;
    margin-left: auto;
  }

  .stock-dashboard {
    margin-right: auto;
    margin-left: auto;
    transform: none;
  }

  .early-pricing-inner {
    justify-items: start;
    gap: 12px;
  }

  .early-pricing-inner p {
    text-align: left;
  }

  .trades-day-grid,
  .strategy-grid,
  .trade-flow,
  .fit-grid,
  .stock-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stock-benefit-card:nth-child(n) {
    grid-column: auto;
  }

  .trade-flow-step:nth-child(2)::after {
    display: none;
  }

  .stock-flow article:nth-child(2)::after {
    display: none;
  }

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


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 760px) {
  .section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 64px;
  }

  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 5% 22px;
    background: #07111f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .site-logo {
    width: 132px;
  }

  .site-logo-footer {
    width: 220px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 50px;
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-card {
    min-height: 500px;
  }

  .rotating-hero-card {
    min-height: 510px;
    padding: 14px;
  }

  .rotating-panel-track {
    min-height: 448px;
  }

  .panel-copy {
    padding: 14px 14px 0;
  }

  .promo-panel-card,
  .trial-panel-card,
  .performance-mini-card,
  .strategy-tile-stack,
  .pin-graphic,
  .portfolio-preview-card,
  .panel-disclosure {
    margin-right: 14px;
    margin-left: 14px;
  }

  .panel-image-frame {
    min-height: 246px;
  }

  .panel-image-frame .dealer-preview-image {
    height: 276px;
  }

  .dealer-preview-image {
    height: 476px;
    object-position: 50% 0%;
    transform: scale(1.1) translateY(-8px);
  }

  .services-container {
    width: min(92%, 1320px);
  }

  .section-heading-pair .eyebrow,
  .section-heading-pair h2 {
    font-size: clamp(1.7rem, 6.2vw, 2.25rem);
  }

  .section-heading-pair p {
    font-size: clamp(1.02rem, 3vw, 1.22rem);
    line-height: 1.65;
  }

  .services-heading .eyebrow,
  .services-heading h2 {
    font-size: clamp(1.7rem, 6.2vw, 2.25rem);
  }

  .services-heading p {
    margin-bottom: 34px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }

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

  .difference-pillar-grid {
    grid-template-columns: 1fr;
  }

  .difference-section {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .signature-ribbon {
    position: static;
    margin: 0 auto 14px;
    transform: rotate(-8deg);
  }

  .performance-heading {
    margin-bottom: 16px;
  }

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

  .snapshot-metrics,
  .performance-mini-card,
  .strategy-tile-stack,
  .portfolio-preview-card {
    grid-template-columns: 1fr;
  }

  .performance-detail-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .product-card {
    padding: 28px;
  }

  .product-card-button {
    width: auto;
    align-self: center;
  }

  .benefit-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .difference-pillar:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .community-home-grid,
  .transparency-grid {
    gap: 34px;
  }

  .community-section,
  .transparency-section {
    padding: 64px 0;
  }

  .transparency-list {
    grid-template-columns: 1fr;
  }

  .transparency-snapshot-metrics div {
    align-items: flex-start;
    flex-direction: column;
  }

  .transparency-snapshot-metrics span {
    text-align: left;
  }

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

  .membership-buttons {
    width: 100%;
    flex-direction: column;
  }

  .membership-buttons .button {
    width: 100%;
  }

  .footer-grid {
    gap: 24px;
  }

  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-columns .faq-list + .faq-list {
    border-top: 0;
  }

  .trades-hero-grid {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .trades-hero-content h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .trades-day-grid,
  .strategy-grid,
  .trade-flow,
  .fit-grid,
  .lounge-items,
  .stock-benefit-grid,
  .stock-flow,
  .stock-comparison-grid {
    grid-template-columns: 1fr;
  }

  .trades-split,
  .lounge-grid,
  .pricing-grid,
  .early-pricing-inner {
    gap: 34px;
  }

  .trade-flow-step::after {
    display: none;
  }

  .stock-flow article::after {
    display: none;
  }

  .trades-process-card,
  .strategy-card,
  .fit-card,
  .pricing-card,
  .comparison-card {
    padding: 24px;
  }

  .trades-final-buttons {
    flex-direction: column;
  }

  .trades-final-buttons .button {
    width: 100%;
  }

  .stock-final-buttons {
    flex-direction: column;
  }

  .stock-final-buttons .button,
  .comparison-card .button {
    width: 100%;
  }

  .stock-dashboard {
    padding: 16px;
  }

  .stock-table-head,
  .stock-table-row {
    grid-template-columns: 0.7fr 1.05fr 1fr;
  }

  .stock-table-head span:last-child,
  .stock-table-row small {
    display: none;
  }

  .temporary-photo {
    width: clamp(190px, 58vw, 220px);
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

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

  h2 {
    font-size: 2rem;
  }

  .container {
    width: min(90%, var(--max-width));
  }

  .section-heading-pair .eyebrow,
  .section-heading-pair h2 {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
  }

  .section-heading-pair p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .services-heading .eyebrow,
  .services-heading h2 {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
  }

  .services-heading p {
    margin-bottom: 32px;
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .product-card {
    padding: 24px;
  }

  .product-card-pricing-top {
    flex-wrap: wrap;
  }

  .dashboard-card {
    min-height: 420px;
    padding: 10px;
  }

  .rotating-hero-card {
    min-height: 500px;
    padding: 12px;
  }

  .rotating-panel-track {
    min-height: 442px;
  }

  .panel-copy h2 {
    font-size: 1.48rem;
  }

  .panel-copy p {
    font-size: 0.92rem;
  }

  .promo-panel-card {
    min-height: 190px;
    padding: 20px;
  }

  .trial-panel-card {
    padding: 14px;
  }

  .trial-preview-panel .panel-kicker {
    top: 10px;
    right: 10px;
    padding: 6px 8px;
    font-size: 0.64rem;
    transform: rotate(4deg);
  }

  .trial-feature-grid {
    gap: 8px;
  }

  .trial-feature-tile {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .trial-feature-icon {
    width: 28px;
    height: 28px;
  }

  .trial-feature-icon svg {
    width: 17px;
    height: 17px;
  }

  .trial-feature-tile strong {
    font-size: 0.82rem;
  }

  .trial-feature-tile p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .trial-panel-cta {
    min-height: 42px;
    margin-top: 12px;
  }

  .pin-graphic {
    min-height: 210px;
  }

  .pin-range-line {
    width: 88%;
    height: 104px;
  }

  .pin-zone-label {
    min-width: 164px;
    padding: 12px 14px;
  }

  .pin-zone-label strong {
    font-size: 0.98rem;
  }

  .pin-zone-label span {
    font-size: 0.72rem;
  }

  .pin-callout-left,
  .pin-callout-right {
    display: none;
  }

  .pin-callout-top {
    top: 20px;
    font-size: 0.58rem;
  }

  .early-pricing-inner .button {
    width: 100%;
  }

  .dealer-preview-image {
    height: 398px;
    object-position: 50% 0%;
    transform: scale(1.08) translateY(-6px);
  }

  .preview-badge {
    bottom: 16px;
    left: 16px;
    padding: 8px 12px;
    font-size: 0.62rem;
  }

  .preview-badge-secondary {
    top: 16px;
    right: 16px;
  }

  .experience-image {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rotating-panel,
  .rotating-panel-indicators button {
    transition: none;
  }
}

/* Resources detail page */
.resources-community-section {
  padding-top: 66px;
  padding-bottom: 62px;
}

.resources-community-copy {
  max-width: 820px;
  margin: -18px auto 28px;
  color: #c9d3df;
  font-size: 1.04rem;
  line-height: 1.7;
  text-align: center;
}

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

.resources-lounge-card {
  padding: 24px;
  background: rgba(10, 21, 36, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid var(--blue);
  border-radius: 10px;
}

.resources-lounge-stock {
  border-top-color: var(--green);
}

.resources-lounge-card b {
  color: var(--blue-bright);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.resources-lounge-stock b {
  color: #55d879;
}

.resources-lounge-card p {
  margin-top: 10px;
  color: #c9d3df;
  line-height: 1.65;
}

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

.resources-lounge-card span {
  padding: 11px 12px;
  color: #e6eef9;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.resources-lounge-trades span {
  box-shadow: inset 3px 0 0 rgba(46, 140, 255, 0.76);
}

.resources-lounge-stock span {
  box-shadow: inset 3px 0 0 rgba(var(--green-rgb), 0.76);
}

.resources-hero,
.resources-dark {
  background: #07111f;
  color: #fff;
}

.resources-hero-grid,
.resource-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 50px;
  align-items: center;
  min-height: 620px;
  padding: 60px 0;
}

.resources-hero-copy {
  max-width: 620px;
}

.resources-hero h1 {
  margin: 14px 0 22px;
  font-size: clamp(3rem, 4.5vw, 4.75rem);
  line-height: 0.98;
}

.resources-hero h1 span {
  color: var(--blue-bright);
}

.resources-hero p {
  color: #d1d9e3;
  font-size: 1.1rem;
}

.resource-hero-badges {
  gap: 12px;
  margin-top: 26px;
}

.resource-hero-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 180, 255, 0.18);
  border-radius: 999px;
  color: #e6eef9;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.resource-hero-badges a:hover,
.resource-hero-badges a:focus-visible {
  background: rgba(46, 140, 255, 0.16);
  border-color: rgba(120, 180, 255, 0.42);
  color: #fff;
  transform: translateY(-1px);
}

.resource-dashboard,
.resource-grid article,
.community-grid article {
  padding: 24px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
}

.resource-dashboard {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(46, 140, 255, 0.2), transparent 28%),
    radial-gradient(circle at 20% 100%, rgba(241, 164, 41, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(11, 23, 39, 0.98), rgba(5, 12, 22, 0.99));
  border-color: rgba(46, 140, 255, 0.35);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.44),
    0 0 60px rgba(20, 93, 220, 0.14);
}

.resource-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(120, 180, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
}

.resource-dashboard-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.resource-dashboard-header span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  color: #d9e4f2;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-dashboard-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.resource-dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resource-dashboard-tile {
  position: relative;
  display: block;
  min-height: 126px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(159, 190, 228, 0.16);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.resource-dashboard-tile strong {
  display: block;
  margin: 10px 0 8px;
  color: #fff;
  font-size: 1rem;
}

.resource-dashboard-tile p {
  margin: 0;
  color: #aec0d3;
  font-size: 0.92rem;
  line-height: 1.5;
}

.resource-dashboard-tile:hover,
.resource-dashboard-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(120, 180, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 34px rgba(7, 17, 31, 0.18);
}

.resource-tile-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(46, 140, 255, 0.28), rgba(46, 140, 255, 0.08));
  border: 1px solid rgba(120, 180, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.resource-tile-mark::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 16px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(214, 232, 255, 0.92);
}

.resource-dashboard-tile-blue {
  border-color: rgba(46, 140, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 3px 0 0 rgba(46, 140, 255, 0.72);
}

.resource-dashboard-tile-highlight {
  grid-column: 1 / -1;
  min-height: 104px;
  background:
    linear-gradient(145deg, rgba(11, 23, 39, 0.96), rgba(8, 18, 33, 0.98)),
    radial-gradient(circle at 88% 50%, rgba(241, 164, 41, 0.12), transparent 26%);
  border-color: rgba(241, 164, 41, 0.24);
}

.resource-dashboard-tile-highlight .resource-tile-mark {
  background:
    linear-gradient(135deg, rgba(241, 164, 41, 0.28), rgba(46, 140, 255, 0.12));
  border-color: rgba(241, 164, 41, 0.24);
}

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

.resource-grid p,
.community-grid p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.resource-green {
  border-top-color: var(--green) !important;
}

.resource-orange {
  border-top-color: var(--orange) !important;
}

.resource-split {
  min-height: 0;
}

.resource-split img {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.resource-split ul {
  margin: 18px 0;
  padding-left: 20px;
}

#resource-overview,
#dealer-levels,
#market-prep,
#community-access,
#trade-alerts-management,
#performance-transparency {
  scroll-margin-top: 108px;
}

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

.resource-flow article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
}

.resource-flow p {
  color: #c9d3df;
  margin-top: 8px;
}

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

.community-grid article {
  background: #0b1727;
  border-color: rgba(255, 255, 255, 0.15);
}

.resource-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.trade-alerts-section .resource-flow article {
  background: #fff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--blue);
  box-shadow: 0 15px 36px rgba(15, 23, 42, 0.06);
}

.trade-alerts-section .resource-flow p {
  color: var(--text-mid);
}

.trade-alert-preview {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.trade-alert-preview-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: var(--navy);
  background: #eef5ff;
  border: 1px solid rgba(46, 140, 255, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-alert-preview-frame {
  padding: 16px;
  background:
    radial-gradient(circle at 84% 16%, rgba(46, 140, 255, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
  border: 1px solid rgba(46, 140, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.trade-alert-preview-frame img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
}

.trade-alert-preview-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: #4c5f76;
  font-size: 0.92rem;
  line-height: 1.6;
}

.resources-stock-section .resource-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.resources-stock-section .resource-grid p {
  color: #c9d3df;
}

@media (max-width: 1024px) {
  .resources-hero-grid,
  .resource-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .resources-hero-copy {
    max-width: 100%;
  }

  .resource-dashboard {
    max-width: 640px;
  }

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

@media (max-width: 760px) {
  .resource-grid,
  .resource-flow,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .resources-hero-grid {
    gap: 36px;
    padding: 48px 0;
  }

  .resource-hero-badges {
    gap: 10px;
  }

  .resource-dashboard {
    padding: 18px;
    border-radius: 16px;
  }

  .resource-dashboard-grid {
    gap: 12px;
  }

  .resource-dashboard-tile {
    min-height: 0;
    padding: 16px;
  }

  .trade-alert-preview {
    margin-bottom: 26px;
  }

  .trade-alert-preview-frame {
    padding: 12px;
    border-radius: 16px;
  }

  .trade-alert-preview-note {
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .resource-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .resource-dashboard-tile-highlight {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .resources-lounge-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .resources-community-copy {
    margin-top: -10px;
    text-align: left;
  }

  .resources-lounge-card div {
    grid-template-columns: 1fr;
  }
}

/* Legal and policy pages */
.legal-hero{position:relative;overflow:hidden;background:#07111f;color:#fff}.legal-hero-inner{position:relative;z-index:1;max-width:980px;padding:92px 0 78px}.legal-hero h1{max-width:920px;margin:14px 0 18px;font-size:clamp(2.7rem,5vw,4.7rem);line-height:1.02}.legal-hero p{max-width:780px;color:#d1d9e3;font-size:1.1rem;line-height:1.7}.legal-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:42px;align-items:start;max-width:1120px}.legal-layout-single{display:block;max-width:980px}.legal-toc{position:sticky;top:104px;display:grid;gap:10px;padding:20px;background:#fff;border:1px solid var(--border-light);border-top:3px solid var(--blue);border-radius:8px;box-shadow:0 14px 30px rgba(7,17,31,.08)}.legal-toc strong{color:var(--navy);font-size:.82rem;letter-spacing:.08em;text-transform:uppercase}.legal-toc a{color:#34465d;font-size:.94rem;line-height:1.35}.legal-toc a:hover{color:var(--blue)}.legal-content{max-width:960px;color:#243449;font-size:1.02rem;line-height:1.78}.legal-content p,.legal-content li{color:#34465d}.legal-content a{color:var(--blue);font-weight:700}.legal-section{padding:28px 0;border-bottom:1px solid var(--border-light);scroll-margin-top:110px}.legal-section:first-of-type{padding-top:0}.legal-section:last-child{border-bottom:0}.legal-section h2{margin:0 0 14px;color:var(--navy);font-size:clamp(1.5rem,2.1vw,2rem);line-height:1.25}.legal-section h3{margin:22px 0 8px;color:var(--navy);font-size:1.04rem;line-height:1.35;text-transform:uppercase;letter-spacing:.04em}.legal-section ul{display:grid;gap:9px;margin:12px 0 0;padding-left:22px}.legal-status-note,.legal-updated,.legal-card{border-radius:8px}.legal-status-note{margin:0 0 26px;padding:14px 16px;background:#fff5df;border:1px solid rgba(241,164,41,.35);color:#704800;font-weight:700}.legal-updated{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px}.legal-updated span{padding:10px 12px;background:#eef5ff;border:1px solid rgba(46,140,255,.2);color:#183657;font-weight:700}.legal-caps{padding:18px;background:#f6f8fb;border-left:4px solid var(--orange);font-size:.96rem;line-height:1.72;letter-spacing:.01em}.legal-card{padding:32px;background:#fff;border:1px solid var(--border-light);border-top:3px solid var(--blue);box-shadow:0 14px 30px rgba(7,17,31,.08)}.legal-link-list{display:flex;flex-wrap:wrap;gap:12px;margin:22px 0}.legal-link-list a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 16px;background:var(--blue);color:#fff;border-radius:6px}.legal-link-list a:hover{background:var(--navy);color:#fff}.legal-note{font-weight:700}.legal-contact{font-style:normal;color:#34465d;line-height:1.85}@media(max-width:900px){.legal-layout{grid-template-columns:1fr}.legal-toc{position:static}.legal-hero-inner{padding:64px 0 56px}.legal-section{scroll-margin-top:90px}}@media(max-width:560px){.legal-hero h1{font-size:clamp(2.4rem,12vw,3rem)}.legal-content{font-size:1rem}.legal-card{padding:24px}.legal-link-list a{width:100%}}

/* Member celebration landing page */
.member-celebration-page {
  background: #f5f7fa;
}

.member-celebration-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 140, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(241, 164, 41, 0.16), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #091527 54%, #0b172a 100%);
  color: #fff;
}

.member-celebration-hero::before,
.member-celebration-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.member-celebration-hero::before {
  top: 70px;
  left: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(46, 140, 255, 0.26), transparent 68%);
}

.member-celebration-hero::after {
  right: -40px;
  bottom: 10px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(241, 164, 41, 0.22), transparent 70%);
}

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

.member-celebration-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.member-celebration-copy .eyebrow {
  color: #dfeaff;
}

.member-celebration-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.55rem, 5.1vw, 4.35rem);
  color: #fff7e2;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.member-celebration-copy h1 span {
  color: #e8a128;
  text-shadow:
    0 0 1px rgba(255, 244, 209, 0.4),
    0 10px 26px rgba(232, 161, 40, 0.18);
}

.member-celebration-copy h1::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 161, 40, 0.95), rgba(255, 230, 164, 0.55), rgba(232, 161, 40, 0));
}

.member-celebration-copy p {
  max-width: 600px;
  color: #edf3fb;
  font-size: 1.12rem;
  line-height: 1.75;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.member-celebration-actions {
  display: inline-grid;
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}

.member-celebration-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.celebration-button-coupon {
  background: linear-gradient(135deg, #d94b34, #b93122);
  box-shadow: 0 10px 26px rgba(217, 75, 52, 0.28);
}

.celebration-button-coupon:hover {
  box-shadow: 0 14px 32px rgba(217, 75, 52, 0.34);
}

.celebration-button-secondary {
  color: #fff;
}

.celebration-button-referral {
  background: linear-gradient(135deg, #1f7d42, #155d30);
  box-shadow: 0 10px 26px rgba(31, 125, 66, 0.26);
}

.celebration-button-referral:hover {
  box-shadow: 0 14px 32px rgba(31, 125, 66, 0.34);
}

.celebration-button-rate {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.celebration-button-rate:hover {
  box-shadow: 0 12px 28px rgba(22, 119, 255, 0.32);
}

.member-celebration-audio-row {
  display: flex;
  justify-content: center;
}

.celebration-button-audio {
  min-height: 48px;
  padding: 10px 18px;
  background: rgba(232, 161, 40, 0.12);
  border: 1px solid rgba(232, 161, 40, 0.64);
  color: #fff2cf;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 242, 207, 0.08);
}

.celebration-button-audio:hover,
.celebration-button-audio:focus-visible {
  color: #fff8e6;
  background: rgba(232, 161, 40, 0.2);
  border-color: rgba(255, 223, 146, 0.9);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(232, 161, 40, 0.22);
}

.celebration-hero-media {
  position: relative;
  z-index: 2;
}

.celebration-hero-frame {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  padding: 18px;
  background:
    linear-gradient(155deg, rgba(12, 24, 42, 0.96), rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 78% 16%, rgba(46, 140, 255, 0.18), transparent 24%),
    radial-gradient(circle at 22% 84%, rgba(34, 164, 71, 0.12), transparent 24%);
  border: 1px solid rgba(157, 188, 228, 0.18);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(232, 161, 40, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.34),
    0 0 90px rgba(232, 161, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.celebration-hero-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(173, 197, 228, 0.22);
  border-radius: 20px;
  pointer-events: none;
}

.celebration-hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 820px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.celebration-image-load {
  opacity: 0;
  transform: translateY(18px) rotate(0deg) scale(0.985);
  transform-origin: center center;
  animation: celebrationImageWiggle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 3.15s 1 forwards;
}

.member-celebration-firework {
  position: absolute;
  top: 112px;
  left: min(45%, 560px);
  z-index: 0;
  width: 260px;
  height: 260px;
  pointer-events: none;
  transform: translateX(-50%);
  filter: saturate(1.08);
}

.member-celebration-firework-second {
  top: 460px;
  left: calc(min(67.5%, 824px) + 260px);
}

.member-celebration-firework-hold .member-firework-core {
  animation-name: memberFireworkCoreHold;
}

.member-celebration-firework-hold .member-firework-ring {
  animation-name: memberFireworkRingHold;
}

.member-celebration-firework-hold .member-firework-spark {
  animation-name: memberFireworkSparkHold;
}

.member-celebration-firework span {
  position: absolute;
  inset: 50% auto auto 50%;
  pointer-events: none;
}

.member-firework-core,
.member-firework-ring {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
}

.member-firework-core {
  background:
    radial-gradient(circle, rgba(255, 247, 224, 0.98) 0%, rgba(232, 161, 40, 0.95) 42%, rgba(232, 161, 40, 0) 78%);
  box-shadow:
    0 0 18px rgba(255, 244, 214, 0.72),
    0 0 42px rgba(232, 161, 40, 0.3);
  animation: memberFireworkCore 1.6s ease-out 0s 1 forwards;
}

.member-firework-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 232, 177, 0.8);
  box-shadow:
    0 0 18px rgba(255, 244, 214, 0.44),
    0 0 56px rgba(46, 140, 255, 0.18);
  animation: memberFireworkRing 1.6s ease-out 0.08s 1 forwards;
}

.member-firework-spark {
  width: 110px;
  height: 4px;
  margin-left: -2px;
  border-radius: 999px;
  opacity: 0;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.8) 14%, rgba(255, 250, 240, 0) 100%);
  box-shadow: 0 0 14px rgba(255, 241, 202, 0.2);
  animation: memberFireworkSpark 1.55s cubic-bezier(0.19, 0.84, 0.21, 1) 0.06s 1 forwards;
}

.member-celebration-firework-second .member-firework-core {
  animation-delay: 1.6s;
}

.member-celebration-firework-second .member-firework-ring {
  animation-delay: 1.68s;
}

.member-celebration-firework-second .member-firework-spark.spark-1 {
  animation-delay: 1.66s;
}

.member-celebration-firework-second .member-firework-spark.spark-2 {
  animation-delay: 1.74s;
}

.member-celebration-firework-second .member-firework-spark.spark-3 {
  animation-delay: 1.82s;
}

.member-celebration-firework-second .member-firework-spark.spark-4 {
  animation-delay: 1.7s;
}

.member-celebration-firework-second .member-firework-spark.spark-5 {
  animation-delay: 1.78s;
}

.member-celebration-firework-second .member-firework-spark.spark-6 {
  animation-delay: 1.88s;
}

.member-celebration-firework-second .member-firework-spark.spark-7 {
  animation-delay: 1.76s;
}

.member-celebration-firework-second .member-firework-spark.spark-8 {
  animation-delay: 1.84s;
}

.member-firework-spark::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: inherit;
  filter: blur(0.2px);
}

.member-firework-spark.spark-1 {
  --firework-angle: 16deg;
  background: linear-gradient(90deg, rgba(255, 248, 230, 1), rgba(232, 161, 40, 0.92) 18%, rgba(232, 161, 40, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
}

.member-firework-spark.spark-2 {
  --firework-angle: 58deg;
  background: linear-gradient(90deg, rgba(243, 251, 255, 1), rgba(46, 140, 255, 0.9) 18%, rgba(46, 140, 255, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.14s;
}

.member-firework-spark.spark-3 {
  --firework-angle: 102deg;
  background: linear-gradient(90deg, rgba(242, 255, 253, 1), rgba(26, 182, 170, 0.9) 18%, rgba(26, 182, 170, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.22s;
}

.member-firework-spark.spark-4 {
  --firework-angle: 146deg;
  background: linear-gradient(90deg, rgba(255, 249, 240, 1), rgba(245, 158, 11, 0.9) 18%, rgba(245, 158, 11, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.1s;
}

.member-firework-spark.spark-5 {
  --firework-angle: 196deg;
  background: linear-gradient(90deg, rgba(242, 255, 253, 1), rgba(34, 164, 71, 0.9) 18%, rgba(34, 164, 71, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.18s;
}

.member-firework-spark.spark-6 {
  --firework-angle: 236deg;
  background: linear-gradient(90deg, rgba(243, 251, 255, 1), rgba(46, 140, 255, 0.88) 18%, rgba(46, 140, 255, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.28s;
}

.member-firework-spark.spark-7 {
  --firework-angle: 282deg;
  background: linear-gradient(90deg, rgba(255, 248, 230, 1), rgba(232, 161, 40, 0.92) 18%, rgba(232, 161, 40, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.16s;
}

.member-firework-spark.spark-8 {
  --firework-angle: 328deg;
  background: linear-gradient(90deg, rgba(242, 255, 253, 1), rgba(26, 182, 170, 0.88) 18%, rgba(26, 182, 170, 0) 100%);
  transform: translate(-50%, -50%) rotate(var(--firework-angle)) scaleX(0.12);
  animation-delay: 0.24s;
}

.member-offers-section {
  position: relative;
  padding-top: 56px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eff4fa 100%);
}

.member-letter-panel {
  max-width: 930px;
  margin: 0 auto;
  padding: 34px 36px 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    radial-gradient(circle at top right, rgba(46, 140, 255, 0.08), transparent 24%);
  border: 1px solid rgba(181, 195, 214, 0.76);
  border-radius: 28px;
  box-shadow:
    0 24px 54px rgba(10, 18, 31, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.member-letter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.member-letter-logo {
  width: 170px;
  max-width: 46%;
}

.member-letter-heading {
  text-align: right;
}

.member-letter-heading span {
  display: block;
  color: #6e7f94;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.member-letter-heading strong {
  display: block;
  margin-top: 8px;
  color: #0d2340;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
}

.member-letter-rule {
  height: 5px;
  margin: 22px 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1677ff 0%, #e8a128 56%, rgba(232, 161, 40, 0.15) 100%);
}

.member-letter-body {
  display: grid;
  gap: 22px;
}

.member-letter-body p {
  color: #31465d;
  font-size: 1.08rem;
  line-height: 1.9;
}

.member-letter-signoff {
  margin-top: 6px;
  color: #0d2340;
  font-size: 1.14rem;
  font-weight: 800;
}

.member-detail-section {
  padding: 84px 0;
}

.member-detail-section-dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 161, 40, 0.16), transparent 24%),
    radial-gradient(circle at 16% 24%, rgba(46, 140, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091527 52%, #0b172a 100%);
}

.member-detail-grid,
.member-notes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}

.member-detail-copy h2,
.member-panel-copy h2,
.member-notes-card h2,
.member-thank-you-card h2 {
  margin: 10px 0 16px;
  color: #0d2340;
}

.member-offers-section .section-heading {
  margin-bottom: 34px;
}

.member-offers-section .section-heading h2 {
  color: var(--blue);
  text-transform: uppercase;
}

.member-panel-copy h3 {
  margin: 0 0 16px;
  color: #0d55c7;
  font-size: 1.28rem;
  line-height: 1.4;
}

.member-detail-copy p,
.member-panel-copy p,
.member-notes-card p,
.member-disclosure-card p,
.member-thank-you-card p {
  color: #42546b;
}

.member-detail-section-dark .member-detail-copy h2,
.member-rate-section .member-panel-copy h2,
.member-notes-section .member-notes-card h2 {
  color: #f7fbff;
}

.member-detail-section-dark .member-detail-copy p,
.member-detail-section-dark .celebration-steps li,
.member-rate-section .member-panel-copy p,
.member-rate-section .celebration-steps li,
.member-notes-section .member-notes-card p,
.member-notes-section .celebration-notes-list li {
  color: #d4deea;
}

.celebration-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-left: 22px;
}

.celebration-steps li {
  color: #22364f;
}

.celebration-code-card,
.celebration-store-shop-card,
.member-panel,
.member-thank-you-card,
.member-notes-card,
.member-disclosure-card {
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(10, 18, 31, 0.08);
}

.celebration-store-banner-wrap {
  max-width: 930px;
  margin: 0 auto 32px;
}

.celebration-code-card {
  padding: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(46, 140, 255, 0.22), transparent 24%),
    radial-gradient(circle at 20% 82%, rgba(232, 161, 40, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(11, 23, 39, 0.98), rgba(7, 17, 31, 0.98));
  border: 1px solid rgba(171, 191, 221, 0.16);
  color: #fff;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(232, 161, 40, 0.08);
}

.member-detail-grid-store {
  align-items: stretch;
}

.celebration-code-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: #d8e7ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.celebration-code-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: 0.08em;
}

.celebration-code-card p {
  color: #c7d3e2;
}

.celebration-store-banner {
  width: 100%;
  height: clamp(204px, 30vw, 250px);
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(232, 161, 40, 0.26);
  border-radius: 18px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(232, 161, 40, 0.1);
}

.celebration-store-side {
  display: grid;
  gap: 20px;
}

.celebration-store-shop-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(232, 161, 40, 0.15), transparent 24%),
    linear-gradient(180deg, rgba(15, 30, 50, 0.98), rgba(8, 18, 31, 0.98));
  border: 1px solid rgba(171, 191, 221, 0.16);
  color: #fff;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(232, 161, 40, 0.08);
}

.celebration-store-shop-card h3 {
  text-align: center;
  color: #f7fbff;
  font-size: 1.42rem;
  line-height: 1.3;
}

.celebration-store-shop-card p {
  margin: 0;
  text-align: center;
  color: #dce6f3;
  line-height: 1.7;
}

.celebration-store-button {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #e8a128, #f3b43b);
  color: #081322;
  box-shadow: 0 14px 30px rgba(232, 161, 40, 0.28);
}

.celebration-store-button:hover,
.celebration-store-button:focus-visible {
  color: #081322;
  box-shadow: 0 18px 38px rgba(232, 161, 40, 0.34);
}

.member-detail-section-dark .member-store-reminder {
  color: #dce6f3;
}

.member-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(181, 195, 214, 0.7);
}

.member-referral-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.member-referral-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef4fa 100%);
}

.member-panel-green {
  border-top: 4px solid var(--green);
}

.member-panel-orange {
  border-top: 4px solid var(--orange);
}

.member-rate-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(232, 161, 40, 0.15), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(46, 140, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0a1627 100%);
}

.member-rate-section .member-panel {
  background: rgba(11, 23, 39, 0.78);
  border-color: rgba(171, 191, 221, 0.16);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.member-rate-content {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
  justify-items: center;
}

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

.member-rate-copy p {
  max-width: 680px;
  margin: 0 auto;
}

.member-rate-graphic-frame {
  width: 100%;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(8, 18, 31, 0.98), rgba(11, 23, 39, 0.98)),
    radial-gradient(circle at 78% 18%, rgba(46, 140, 255, 0.14), transparent 26%);
  border: 1px solid rgba(171, 191, 221, 0.18);
  border-radius: 24px;
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(46, 140, 255, 0.08);
}

.member-rate-graphic {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  border-radius: 18px;
}

.member-rate-button {
  min-width: 220px;
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  padding: 16px 26px;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(22, 119, 255, 0.28);
}

.member-rate-button:hover,
.member-rate-button:focus-visible {
  color: #fff;
  box-shadow: 0 18px 38px rgba(22, 119, 255, 0.36);
}

.member-rate-button span,
.member-rate-button small {
  display: block;
}

.member-rate-button span {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.member-rate-button small {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-rate-section .eyebrow,
.member-notes-section .eyebrow {
  color: #dfeaff;
}

.member-small-note {
  margin: 20px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.member-referral-media {
  position: relative;
}

.member-referral-graphic-frame {
  position: relative;
  padding: 16px;
  background:
    linear-gradient(180deg, #fdfefe, #f4faf9),
    radial-gradient(circle at 76% 18%, rgba(26, 182, 170, 0.1), transparent 26%);
  border: 1px solid rgba(26, 182, 170, 0.16);
  border-radius: 24px;
  box-shadow:
    0 24px 44px rgba(10, 18, 31, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.member-referral-graphic-frame::after {
  content: "";
  position: absolute;
  inset: auto 14% -18px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 182, 170, 0.22), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.member-referral-graphic {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.member-thank-you-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 42px;
  text-align: center;
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    radial-gradient(circle at 15% 18%, rgba(46, 140, 255, 0.08), transparent 28%);
  border: 1px solid rgba(181, 195, 214, 0.72);
}

.member-thank-you-wrap {
  position: relative;
}

.member-thank-you-wrap .member-thank-you-card {
  position: relative;
  z-index: 1;
}

.member-thank-you-firework {
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translateY(-50%);
  z-index: 0;
}

.member-thank-you-firework-left {
  left: 24px;
}

.member-thank-you-firework-right {
  left: auto;
  right: -72px;
}

.member-thank-you-firework-right .member-firework-core {
  animation-delay: 0.55s;
}

.member-thank-you-firework-right .member-firework-ring {
  animation-delay: 0.63s;
}

.member-thank-you-firework-right .member-firework-spark.spark-1 {
  animation-delay: 0.61s;
}

.member-thank-you-firework-right .member-firework-spark.spark-2 {
  animation-delay: 0.69s;
}

.member-thank-you-firework-right .member-firework-spark.spark-3 {
  animation-delay: 0.77s;
}

.member-thank-you-firework-right .member-firework-spark.spark-4 {
  animation-delay: 0.65s;
}

.member-thank-you-firework-right .member-firework-spark.spark-5 {
  animation-delay: 0.73s;
}

.member-thank-you-firework-right .member-firework-spark.spark-6 {
  animation-delay: 0.81s;
}

.member-thank-you-firework-right .member-firework-spark.spark-7 {
  animation-delay: 0.67s;
}

.member-thank-you-firework-right .member-firework-spark.spark-8 {
  animation-delay: 0.75s;
}

.member-thank-you-card .member-thank-you-line {
  margin-top: 16px;
  color: #e8a128;
  font-size: 1.45rem;
  font-weight: 800;
  text-shadow:
    0 0 1px rgba(255, 244, 209, 0.35),
    0 10px 26px rgba(232, 161, 40, 0.14);
}

.member-notes-section {
  background:
    linear-gradient(180deg, #edf3f9 0%, #e7eef6 100%);
}

.member-notes-card,
.member-disclosure-card {
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(181, 195, 214, 0.72);
}

.celebration-notes-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-left: 20px;
}

.celebration-notes-list li {
  color: #22364f;
}

.member-disclosure-card {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.98), rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 84% 18%, rgba(241, 164, 41, 0.18), transparent 22%);
  border-color: rgba(171, 191, 221, 0.16);
}

.member-disclosure-card .eyebrow {
  color: #eef4ff;
}

.member-disclosure-card p {
  margin-top: 12px;
  color: #d4deea;
  line-height: 1.8;
}

.member-notes-card {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.96), rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 84% 18%, rgba(46, 140, 255, 0.14), transparent 22%);
  border-color: rgba(171, 191, 221, 0.16);
}

.celebration-reveal,
.celebration-card-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: celebrationReveal 0.8s ease forwards;
}

.celebration-reveal-delay {
  animation-delay: 0.18s;
}

.celebration-card-delay-1 {
  animation-delay: 0.12s;
}

.celebration-card-delay-2 {
  animation-delay: 0.24s;
}

.member-celebration-page.celebration-motion-ready .celebration-scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--celebration-delay, 0s);
}

.member-celebration-page.celebration-motion-ready .celebration-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.member-celebration-page.celebration-motion-ready .celebration-scroll-reveal-soft {
  transform: translateY(18px);
  transition-duration: 0.7s;
}

@keyframes celebrationReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes celebrationImageWiggle {
  0% {
    opacity: 0;
    transform: translateY(18px) rotate(0deg) scale(0.985);
  }

  14% {
    opacity: 1;
    transform: translateY(10px) rotate(-2deg) scale(1.008);
  }

  28% {
    opacity: 1;
    transform: translateY(6px) rotate(2deg) scale(1.015);
  }

  42% {
    opacity: 1;
    transform: translateY(4px) rotate(-1.6deg) scale(1.01);
  }

  58% {
    opacity: 1;
    transform: translateY(2px) rotate(1.5deg) scale(1.01);
  }

  74% {
    opacity: 1;
    transform: translateY(1px) rotate(-0.8deg) scale(1.005);
  }

  88% {
    opacity: 1;
    transform: translateY(0) rotate(0.45deg) scale(1.002);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes memberFireworkCore {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  52% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.5);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.1);
  }
}

@keyframes memberFireworkRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
  }

  16% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.72);
  }

  48% {
    opacity: 0.56;
    transform: translate(-50%, -50%) scale(3.25);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.6);
  }
}

@keyframes memberFireworkSpark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(0.12);
  }

  14% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(0.96);
  }

  46% {
    opacity: 0.9;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(1.18);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(1.38);
  }
}

@keyframes memberFireworkCoreHold {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  48% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(1.46);
  }

  100% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(1.72);
  }
}

@keyframes memberFireworkRingHold {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
  }

  18% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.76);
  }

  52% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(2.98);
  }

  100% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(3.7);
  }
}

@keyframes memberFireworkSparkHold {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(0.12);
  }

  14% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(0.96);
  }

  46% {
    opacity: 0.62;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(1.18);
  }

  100% {
    opacity: 0.34;
    transform: translate(-50%, -50%) rotate(var(--firework-angle, 0deg)) scaleX(1.18);
  }
}

@media (max-width: 1024px) {
  .member-celebration-hero-grid,
  .member-detail-grid,
  .member-notes-grid {
    grid-template-columns: 1fr;
  }

  .member-celebration-firework {
    left: 38%;
  }

  .member-celebration-firework-second {
    top: 410px;
    left: calc(66% + 220px);
  }

  .celebration-hero-media {
    max-width: 680px;
  }

  .member-referral-panel {
    grid-template-columns: 1fr;
  }

  .member-thank-you-firework-left {
    left: -10px;
  }

  .member-thank-you-firework-right {
    right: -56px;
  }
}

@media (max-width: 760px) {
  .member-celebration-hero {
    padding: 66px 0 58px;
  }

  .member-celebration-firework {
    top: 82px;
    left: 34%;
    width: 220px;
    height: 220px;
  }

  .member-celebration-firework-second {
    top: 390px;
    left: calc(72% + 220px);
  }

  .member-celebration-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.05rem);
  }

  .member-celebration-copy p {
    font-size: 1rem;
  }

  .celebration-hero-frame {
    padding: 14px;
  }

  .member-detail-section {
    padding: 68px 0;
  }

  .member-offers-section {
    padding-top: 48px;
  }

  .member-panel,
  .member-letter-panel,
  .member-thank-you-card,
  .member-notes-card,
  .member-disclosure-card,
  .celebration-store-shop-card,
  .celebration-code-card {
    padding: 24px;
  }

  .member-letter-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-letter-logo {
    max-width: 180px;
  }

  .member-letter-heading {
    text-align: left;
  }

  .member-letter-rule {
    margin: 18px 0 22px;
  }

  .member-letter-body {
    gap: 18px;
  }

  .member-letter-body p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .member-thank-you-wrap {
    padding: 0 24px;
  }

  .member-thank-you-firework {
    top: -24px;
    width: 160px;
    height: 160px;
    transform: none;
  }

  .member-thank-you-firework-left {
    left: 0;
  }

  .member-thank-you-firework-right {
    right: 0;
  }
}

@media (max-width: 560px) {
  .member-celebration-actions,
  .member-celebration-primary-actions {
    display: flex;
    flex-direction: column;
  }

  .member-celebration-firework {
    left: 28%;
    width: 180px;
    height: 180px;
  }

  .member-celebration-firework-second {
    top: 336px;
    left: calc(78% + 180px);
  }

  .member-referral-graphic-frame {
    padding: 12px;
  }

  .member-letter-panel {
    padding: 22px 20px 24px;
    border-radius: 22px;
  }

  .member-thank-you-wrap {
    padding-top: 56px;
  }

  .member-thank-you-firework {
    top: 0;
    width: 120px;
    height: 120px;
  }

  .member-thank-you-firework-left {
    left: 8px;
  }

  .member-thank-you-firework-right {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .celebration-image-load,
  .celebration-reveal,
  .celebration-card-reveal {
    animation: none !important;
  }

  .celebration-image-load {
    opacity: 1;
    transform: none;
  }

  .member-celebration-firework,
  .member-celebration-firework span {
    animation: none !important;
    opacity: 0 !important;
  }

  .celebration-reveal,
  .celebration-card-reveal {
    opacity: 1;
    transform: none;
  }

  .member-celebration-page.celebration-motion-ready .celebration-scroll-reveal,
  .member-celebration-page.celebration-motion-ready .celebration-scroll-reveal-soft {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   SEE THE MAP CAMPAIGN PAGE
   ========================================================= */

.see-map-page {
  background: var(--bg-white);
}

.see-map-page .campaign-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(245, 158, 11, 0.12), transparent 26%),
    radial-gradient(circle at 20% 36%, rgba(46, 140, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #050c16 0%, #081322 54%, #07111f 100%);
  color: var(--text-white);
}

.see-map-page .campaign-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
  min-height: 690px;
  padding-top: 64px;
  padding-bottom: 66px;
}

.see-map-page .campaign-hero-copy h1 {
  max-width: 720px;
  margin: 14px 0 22px;
  color: var(--text-white);
  font-size: clamp(3.05rem, 4.9vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.see-map-page .campaign-hero-copy h1 span {
  color: var(--orange);
}

.see-map-page .campaign-hero-copy > p {
  max-width: 650px;
  color: #d1d9e3;
  font-size: 1.1rem;
  line-height: 1.78;
}

.see-map-page .campaign-hero-line {
  margin-top: 14px;
  color: #f7fbff !important;
  font-size: 1.2rem !important;
  font-weight: 800;
}

.see-map-page .campaign-buttons {
  margin-top: 28px;
}

.see-map-page .campaign-buttons .button:first-child,
.see-map-page .campaign-center-cta .button,
.see-map-page .campaign-final-cta .button {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #081322;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.28);
}

.see-map-page .campaign-buttons .button:first-child:hover,
.see-map-page .campaign-center-cta .button:hover,
.see-map-page .campaign-final-cta .button:hover {
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.36);
}

.see-map-page .campaign-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  color: #d6dde6;
  font-size: 0.92rem;
  font-weight: 700;
}

.see-map-page .campaign-trust-row div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.see-map-page .campaign-trust-row .trust-icon {
  color: var(--orange);
}

.see-map-page .campaign-image-card {
  max-width: 590px;
  margin-left: auto;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 27, 46, 0.98), rgba(4, 10, 18, 0.99));
  border: 1px solid rgba(65, 131, 255, 0.38);
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.44),
    0 0 52px rgba(20, 93, 220, 0.14);
}

.see-map-page .campaign-image-label {
  margin-bottom: 12px;
  color: #ffce73;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.see-map-page .campaign-image-frame {
  overflow: hidden;
  background: #07111f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.see-map-page .campaign-image-frame img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  object-position: top center;
}

.see-map-page .campaign-image-card p {
  margin-top: 12px;
  color: #9fb0c3;
  font-size: 0.84rem;
  line-height: 1.6;
}

.see-map-page .campaign-map-section,
.see-map-page .campaign-trial-section,
.see-map-page .campaign-fit-section,
.see-map-page .campaign-risk-section {
  padding: 84px 0;
}

.see-map-page .campaign-map-section,
.see-map-page .campaign-fit-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fa 100%);
}

.see-map-page .campaign-trial-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.12), transparent 24%),
    radial-gradient(circle at 16% 20%, rgba(46, 140, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091527 52%, #0b172a 100%);
  color: var(--text-white);
}

.see-map-page .campaign-section-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.see-map-page .campaign-section-heading h2 {
  color: #0d2340;
  font-size: clamp(2.1rem, 3.7vw, 3.35rem);
  letter-spacing: 0;
}

.see-map-page .campaign-section-heading p {
  margin-top: 14px;
  color: #4d6076;
  font-size: 1.12rem;
  line-height: 1.72;
}

.see-map-page .campaign-step-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.see-map-page .campaign-map-grid,
.see-map-page .campaign-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: center;
}

.see-map-page .campaign-map-image {
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(181, 195, 214, 0.74);
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(10, 18, 31, 0.11);
}

.see-map-page .campaign-map-image img {
  width: 100%;
  border-radius: 8px;
}

.see-map-page .campaign-map-copy {
  display: grid;
  gap: 15px;
}

.see-map-page .campaign-map-copy p {
  color: #34465d;
  font-size: 1.04rem;
  line-height: 1.75;
}

.see-map-page .campaign-callout-stack {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.see-map-page .campaign-callout-stack article,
.see-map-page .campaign-feature-card,
.see-map-page .campaign-fit-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.see-map-page .campaign-callout-stack article {
  padding: 18px 20px;
  background: #fff;
  border-left: 4px solid var(--orange);
}

.see-map-page .campaign-callout-stack h3,
.see-map-page .campaign-feature-card h3,
.see-map-page .campaign-fit-card h3,
.see-map-page .campaign-proof-card h3 {
  color: #0d2340;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.see-map-page .campaign-callout-stack p {
  margin-top: 5px;
  font-size: 0.98rem;
}

.see-map-page .campaign-bold-line {
  margin-top: 4px;
  color: #0d2340 !important;
  font-weight: 900;
}

.see-map-page .campaign-chart-section {
  padding: 84px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 158, 11, 0.13), transparent 24%),
    radial-gradient(circle at 16% 22%, rgba(46, 140, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091527 52%, #0b172a 100%);
  color: var(--text-white);
}

.see-map-page .campaign-chart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.see-map-page .campaign-chart-image {
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(14, 27, 46, 0.96), rgba(4, 10, 18, 0.99));
  border: 1px solid rgba(65, 131, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.see-map-page .campaign-chart-image img {
  width: 100%;
  border-radius: 6px;
}

.see-map-page .campaign-chart-explanation {
  display: grid;
  gap: 12px;
}

.see-map-page .campaign-chart-callout {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.see-map-page .campaign-chart-callout h3 {
  color: #ffce73;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.see-map-page .campaign-chart-callout p {
  margin-top: 6px;
  color: #dce6f3;
  line-height: 1.65;
}

.see-map-page .campaign-chart-closing {
  padding-top: 8px;
}

.see-map-page .campaign-chart-closing p {
  color: #ffce73;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.45;
}

.see-map-page .campaign-final-cta {
  padding: 84px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.14), transparent 24%),
    radial-gradient(circle at 16% 20%, rgba(46, 140, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091527 52%, #0b172a 100%);
  color: var(--text-white);
}

.see-map-page .campaign-proof-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fa 100%);
  color: var(--text-dark);
}

.see-map-page .campaign-proof-section .campaign-section-heading-dark h2 {
  color: #0d2340;
}

.see-map-page .campaign-proof-section .campaign-section-heading-dark p {
  color: #4d6076;
}

.see-map-page .campaign-section-heading-dark h2,
.see-map-page .campaign-section-heading-dark p {
  color: var(--text-white);
}

.see-map-page .campaign-section-heading-dark p {
  color: #d4deea;
}

.see-map-page .campaign-proof-grid,
.see-map-page .campaign-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.see-map-page .campaign-proof-grid {
  align-items: start;
}

.see-map-page .campaign-proof-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(181, 195, 214, 0.74);
  border-top: 3px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.see-map-page .campaign-proof-card h3 {
  color: #0d2340;
}

.see-map-page .campaign-proof-visual {
  min-height: 410px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(181, 195, 214, 0.74);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.see-map-page .campaign-proof-visual img {
  width: 100%;
  min-height: 374px;
  object-fit: contain;
  border-radius: 6px;
}

.see-map-page .campaign-proof-image-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.see-map-page .campaign-proof-placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 36px;
  background:
    linear-gradient(rgba(13, 35, 64, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 35, 64, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(245, 158, 11, 0.12), transparent 30%),
    #f6f8fb;
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px dashed rgba(13, 35, 64, 0.22);
  border-radius: 8px;
  text-align: center;
}

.see-map-page .campaign-proof-placeholder span {
  display: block;
  color: #0d55c7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.see-map-page .campaign-proof-placeholder p {
  max-width: 330px;
  margin-top: 10px;
  color: #4d6076;
  font-size: 0.98rem;
  line-height: 1.65;
}

.see-map-page .campaign-proof-example {
  display: grid;
  gap: 20px;
}

.see-map-page .campaign-proof-card ul,
.see-map-page .campaign-fit-card ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-left: 20px;
}

.see-map-page .campaign-proof-card li {
  color: #34465d;
  line-height: 1.65;
}

.see-map-page .campaign-proof-summary {
  margin-top: 30px;
  text-align: center;
}

.see-map-page .campaign-proof-summary strong {
  display: block;
  color: #ffce73;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}

.see-map-page .campaign-proof-summary p {
  margin-top: 8px;
  color: #d4deea;
}

.see-map-page .campaign-proof-summary-inline {
  padding-top: 0;
}

.see-map-page .campaign-proof-summary-inline strong {
  display: block;
  color: #0d2340;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.see-map-page .campaign-proof-summary-inline p {
  margin-top: 8px;
  color: #34465d;
}

.see-map-page .campaign-disclosure-text {
  max-width: 760px;
  margin: 22px auto 0;
  color: #5d6f84;
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: center;
}

.see-map-page .campaign-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.see-map-page .campaign-feature-card {
  padding: 24px;
  background: #fff;
}

.see-map-page .campaign-trial-section .campaign-section-heading h2 {
  color: var(--text-white);
}

.see-map-page .campaign-trial-section .campaign-section-heading p {
  color: #d4deea;
}

.see-map-page .campaign-trial-section .campaign-feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.see-map-page .campaign-feature-card span {
  color: rgba(22, 119, 255, 0.2);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.see-map-page .campaign-trial-section .campaign-feature-card span {
  color: rgba(245, 158, 11, 0.34);
}

.see-map-page .campaign-feature-card h3 {
  margin-top: 18px;
}

.see-map-page .campaign-trial-section .campaign-feature-card h3 {
  color: var(--text-white);
}

.see-map-page .campaign-feature-card p {
  margin-top: 12px;
  color: #4b5d72;
  line-height: 1.7;
}

.see-map-page .campaign-trial-section .campaign-feature-card p {
  color: #c8d4e1;
}

.see-map-page .campaign-center-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 36px;
  text-align: center;
}

.see-map-page .campaign-center-cta p,
.see-map-page .campaign-billing-line {
  color: #66778c;
  font-size: 0.95rem;
  font-weight: 700;
}

.see-map-page .campaign-trial-section .campaign-center-cta p {
  color: #aebdd0;
}

.see-map-page .campaign-fit-grid {
  align-items: stretch;
}

.see-map-page .campaign-fit-card {
  padding: 28px;
  background: #fff;
  border-top: 4px solid var(--blue);
}

.see-map-page .campaign-fit-card-muted {
  border-top-color: var(--orange);
  background: #fbfcff;
}

.see-map-page .campaign-fit-card li {
  color: #34465d;
  line-height: 1.62;
}

.see-map-page .campaign-fit-note {
  max-width: 820px;
  margin: 26px auto 0;
  color: #0d2340;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.see-map-page .campaign-final-inner {
  display: grid;
  justify-items: center;
  max-width: 870px;
  text-align: center;
}

.see-map-page .campaign-final-inner .eyebrow {
  color: #ffce73;
}

.see-map-page .campaign-final-inner h2 {
  margin: 14px 0 18px;
  color: var(--text-white);
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: 0;
}

.see-map-page .campaign-final-inner p {
  max-width: 700px;
  color: #d4deea;
  font-size: 1.08rem;
  line-height: 1.75;
}

.see-map-page .campaign-final-inner strong {
  display: block;
  margin: 24px 0 28px;
  color: #ffce73;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  line-height: 1.18;
}

.see-map-page .campaign-final-inner .campaign-billing-line {
  margin-top: 14px;
  color: #aebdd0;
}

.see-map-page .campaign-final-lead {
  margin-bottom: 8px;
  font-weight: 800;
}

.see-map-page .campaign-risk-section {
  background: #f7f9fc;
}

.see-map-page .campaign-risk-card {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.07);
}

.see-map-page .campaign-risk-card p {
  color: #34465d;
  font-size: 0.95rem;
  line-height: 1.75;
}

.see-map-page .campaign-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.see-map-page .campaign-legal-links a {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.see-map-page .campaign-legal-links a:hover,
.see-map-page .campaign-legal-links a:focus-visible {
  color: #0d55c7;
}

@media (min-width: 1025px) {
  .see-map-page .campaign-map-image {
    width: 88%;
    justify-self: center;
  }

  .see-map-page .campaign-map-copy {
    align-self: start;
    padding-top: 10px;
  }

  .see-map-page .campaign-proof-grid {
    grid-template-columns: minmax(0, 1.34fr) minmax(340px, 1fr);
    align-items: start;
  }
}

@media (max-width: 1024px) {
  .see-map-page .campaign-hero-grid,
  .see-map-page .campaign-map-grid,
  .see-map-page .campaign-chart-grid,
  .see-map-page .campaign-fit-grid {
    grid-template-columns: 1fr;
  }

  .see-map-page .campaign-hero-grid {
    min-height: auto;
    gap: 42px;
  }

  .see-map-page .campaign-image-card {
    margin-right: auto;
    margin-left: auto;
  }

  .see-map-page .campaign-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .see-map-page .campaign-proof-visual {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .see-map-page .campaign-map-section,
  .see-map-page .campaign-chart-section,
  .see-map-page .campaign-proof-section,
  .see-map-page .campaign-trial-section,
  .see-map-page .campaign-fit-section,
  .see-map-page .campaign-final-cta,
  .see-map-page .campaign-risk-section {
    padding: 66px 0;
  }

  .see-map-page .campaign-hero-grid {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .see-map-page .campaign-hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .see-map-page .campaign-buttons {
    flex-direction: column;
  }

  .see-map-page .campaign-buttons .button,
  .see-map-page .campaign-center-cta .button,
  .see-map-page .campaign-final-cta .button {
    width: 100%;
  }

  .see-map-page .campaign-trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .see-map-page .campaign-image-card,
  .see-map-page .campaign-map-image,
  .see-map-page .campaign-chart-image,
  .see-map-page .campaign-chart-callout,
  .see-map-page .campaign-proof-card,
  .see-map-page .campaign-proof-visual,
  .see-map-page .campaign-feature-card,
  .see-map-page .campaign-fit-card,
  .see-map-page .campaign-risk-card {
    padding: 20px;
  }

  .see-map-page .campaign-image-frame img {
    max-height: 390px;
  }

  .see-map-page .campaign-proof-grid,
  .see-map-page .campaign-feature-grid {
    grid-template-columns: 1fr;
  }

  .see-map-page .campaign-proof-placeholder {
    padding: 28px 20px;
  }

  .see-map-page .campaign-section-heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 560px) {
  .see-map-page .campaign-hero-line {
    font-size: 1.06rem !important;
  }

  .see-map-page .campaign-section-heading h2,
  .see-map-page .campaign-final-inner h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .see-map-page .campaign-map-copy p,
  .see-map-page .campaign-final-inner p {
    font-size: 1rem;
  }

  .see-map-page .campaign-legal-links {
    flex-direction: column;
    gap: 8px;
  }
}

