:root {
  --bg: #07090c;
  --bg-soft: #0d1116;
  --panel: rgba(11, 16, 20, 0.88);
  --panel-strong: rgba(16, 23, 28, 0.94);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7f5;
  --muted: #a7b2ae;
  --soft: #d8e1dd;
  --green: #41f2a0;
  --green-strong: #10d87e;
  --cyan: #57c7ff;
  --amber: #d4a342;
  --red: #ef5f72;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

.top-menu {
  position: relative;
  z-index: 5;
  background:
    linear-gradient(135deg, rgba(65, 242, 160, 0.055), transparent 42%),
    rgba(6, 8, 11, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top-menu-shell {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.top-menu-brand {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
}

.top-menu-brand::before {
  width: 0.52rem;
  height: 0.52rem;
  margin-right: 0.58rem;
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(65, 242, 160, 0.42);
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 22%, rgba(65, 242, 160, 0.12), transparent 27rem),
    radial-gradient(circle at 18% 18%, rgba(87, 199, 255, 0.09), transparent 26rem),
    linear-gradient(137deg, #06080b 0%, #09110f 49%, #0b0c10 100%);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(65, 242, 160, 0.08), transparent 32%, transparent 68%, rgba(87, 199, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 75%, rgba(0, 0, 0, 0.55));
  opacity: 0.9;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 84%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.12fr);
  gap: clamp(3rem, 6vw, 6.6rem);
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  padding: clamp(4.5rem, 8vh, 7rem) 0;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(65, 242, 160, 0.9);
}

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

.hero-copy h1 {
  max-width: 610px;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: clamp(3rem, 4.25vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--green);
  background: linear-gradient(105deg, var(--green) 0 38%, #f3fff8 48%, #7fffc0 58%, var(--green) 76% 100%);
  background-size: 240% 100%;
  background-position: 100% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(65, 242, 160, 0.28));
  animation: hero-highlight-glint 4.8s ease-in-out infinite;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  top: 0.02em;
  right: -0.1em;
  width: 0.36em;
  height: 0.36em;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 18%, rgba(126, 255, 192, 0.7) 28%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.4);
  animation: hero-highlight-flare 4.8s ease-in-out infinite;
}

.hero-copy > h2 {
  max-width: 640px;
  margin-bottom: 1.35rem;
  color: var(--soft);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-price-note {
  max-width: 620px;
  margin: -0.55rem 0 1.2rem;
  color: rgba(176, 187, 184, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.primary-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem 0.95rem 1.35rem;
  color: #03100b;
  background: linear-gradient(135deg, var(--green), #d7ff75);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow:
    0 16px 36px rgba(65, 242, 160, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.primary-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2.25;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 46px rgba(65, 242, 160, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  filter: saturate(1.08);
}

.primary-cta:focus-visible {
  outline: 3px solid rgba(87, 199, 255, 0.7);
  outline-offset: 4px;
}

.hero-checks {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  color: var(--soft);
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.hero-checks li {
  display: grid;
  grid-template-columns: 1.45rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.hero-checks li::before {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  content: "✓";
  color: #03100b;
  background: rgba(65, 242, 160, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(65, 242, 160, 0.2);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-actions p {
  display: none;
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  top: 8%;
  right: -3%;
  width: 18rem;
  height: 18rem;
  background: conic-gradient(from 90deg, rgba(65, 242, 160, 0.24), rgba(87, 199, 255, 0.15), transparent 54%);
  border-radius: 999px;
  opacity: 0.56;
  filter: blur(58px);
}

.hero-visual::after {
  inset: 9% -1% auto auto;
  width: min(42vw, 510px);
  height: min(42vw, 510px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(8deg);
}

.market-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, 67vh, 720px);
  padding: clamp(1rem, 2.2vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transform-origin: center;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
  will-change: transform;
}

.market-card.is-paused .candle {
  animation-play-state: paused;
}

.market-card:hover {
  z-index: 2;
  border-color: rgba(65, 242, 160, 0.24);
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.5),
    0 0 52px rgba(65, 242, 160, 0.12);
  transform: scale(1.035);
}

.market-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 72%, rgba(65, 242, 160, 0.1)),
    radial-gradient(circle at 20% 12%, rgba(212, 163, 66, 0.09), transparent 16rem);
  pointer-events: none;
}

.chart-header,
.market-stats,
.watchlist-strip,
.chart-wrap {
  position: relative;
  z-index: 1;
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-header .label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.chart-header strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.breakout-badge {
  flex: 0 0 auto;
  padding: 0.45rem 0.65rem;
  color: #03100b;
  background: rgba(65, 242, 160, 0.9);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 34px rgba(65, 242, 160, 0.22);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.market-stats span {
  min-width: 0;
  padding: 0.75rem;
  overflow: hidden;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.74rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.market-stats strong {
  display: block;
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: 1rem;
  transition: color 220ms ease;
}

.market-card.show-signal .market-stats span {
  color: rgba(244, 255, 249, 0.86);
  background: linear-gradient(135deg, rgba(65, 242, 160, 0.24), rgba(65, 242, 160, 0.08));
  border-color: rgba(65, 242, 160, 0.58);
  box-shadow:
    0 14px 34px rgba(65, 242, 160, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.market-card.show-signal .market-stats strong {
  color: var(--green);
}

.chart-wrap {
  position: relative;
  height: clamp(380px, 52vh, 520px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(65, 242, 160, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(3, 7, 9, 0.48), rgba(5, 8, 12, 0.8));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stock-chart {
  width: 100%;
  height: 100%;
  display: block;
}

.grid-lines line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.price-area {
  opacity: 0;
  fill: url("#area-gradient");
  transition: opacity 600ms ease;
}

.market-card.is-active .price-area {
  opacity: 1;
}

.moving-average {
  opacity: 0;
  fill: none;
  stroke: rgba(87, 199, 255, 0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter: url("#glow");
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition:
    opacity 600ms ease 900ms,
    stroke-dashoffset 2400ms ease 900ms;
}

.market-card.is-active .moving-average {
  opacity: 1;
  stroke-dashoffset: 0;
}

.candle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.market-card.is-active .candle {
  animation: candle-in 420ms ease forwards;
}

.candle .wick {
  stroke-width: 2.5;
  stroke-linecap: round;
}

.candle .body {
  rx: 3;
}

.candle.up .wick,
.candle.up .body {
  stroke: var(--green);
  fill: rgba(65, 242, 160, 0.9);
}

.candle.down .wick,
.candle.down .body {
  stroke: var(--red);
  fill: rgba(239, 95, 114, 0.88);
}

@keyframes candle-in {
  from {
    opacity: 0;
    transform: translateY(16px) scaleY(0.45);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes hero-highlight-glint {
  0%,
  52% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 10px rgba(65, 242, 160, 0.26));
  }

  66% {
    background-position: 44% 50%;
    filter: drop-shadow(0 0 18px rgba(65, 242, 160, 0.42));
  }

  82%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px rgba(65, 242, 160, 0.26));
  }
}

@keyframes hero-highlight-flare {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }

  66% {
    opacity: 0.9;
    transform: scale(1);
  }

  76% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.price-marker {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

.market-card.show-signal .price-marker {
  opacity: 1;
  transform: translateY(0);
}

.price-marker line {
  stroke: rgba(65, 242, 160, 0.35);
  stroke-dasharray: 7 9;
}

.price-marker rect {
  fill: rgba(7, 12, 11, 0.94);
  stroke: rgba(65, 242, 160, 0.5);
}

.price-marker text {
  fill: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.take-profit-popover {
  position: absolute;
  top: 15%;
  right: 8%;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.78rem;
  color: #ffffff;
  background: rgba(7, 12, 11, 0.82);
  border: 1px solid rgba(65, 242, 160, 0.5);
  border-radius: 8px;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.4),
    0 0 42px rgba(65, 242, 160, 0.22);
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.7);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(14px);
}

.take-profit-popover strong {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #03100b;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.86rem;
}

.market-card.show-signal .take-profit-popover {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: profit-pop 680ms cubic-bezier(0.18, 0.88, 0.25, 1.2);
}

@keyframes profit-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.52);
  }

  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1.18);
  }

  78% {
    transform: translateY(1px) scale(0.96);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.watchlist-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1rem;
}

.watchlist-strip span {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 800;
}

.watchlist-strip span.active {
  color: #03100b;
  background: rgba(65, 242, 160, 0.9);
  border-color: rgba(65, 242, 160, 0.92);
}

.conversion-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(65, 242, 160, 0.055), transparent 34%, rgba(87, 199, 255, 0.045)),
    linear-gradient(180deg, #07090c 0%, #0a0d12 50%, #06080b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.conversion-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 22%, transparent 80%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(65, 242, 160, 0.045), transparent 24%, transparent 76%, rgba(87, 199, 255, 0.04));
}

.conversion-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--green);
}

.section-kicker span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.section-kicker strong {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.conversion-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.conversion-heading h2,
.offer-copy h2,
.faq-intro h2 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.75rem, 5.35vw, 5.1rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.conversion-heading p,
.offer-copy p,
.faq-intro p {
  max-width: 465px;
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.65;
}

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

.audience-card,
.offer-card,
.faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(12, 17, 22, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.audience-card {
  min-height: 390px;
  padding: clamp(1.25rem, 2.3vw, 1.8rem);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.audience-card::before,
.offer-card::before,
.faq-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(65, 242, 160, 0.12), transparent 36%, rgba(87, 199, 255, 0.07));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.audience-card:hover,
.offer-card:hover,
.faq-item:hover {
  border-color: rgba(65, 242, 160, 0.3);
  box-shadow:
    0 26px 82px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(65, 242, 160, 0.08);
  transform: translateY(-4px);
}

.audience-card:hover::before,
.offer-card:hover::before,
.faq-item:hover::before {
  opacity: 1;
}

.audience-card--not-fit {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 14, 18, 0.93);
}

.audience-label,
.offer-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.audience-card--not-fit .audience-label {
  color: var(--red);
  text-shadow: 0 0 16px rgba(239, 95, 114, 0.28);
}

.conversion-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversion-list li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: #eaf5ef;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.5;
}

.conversion-list li::before {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  place-items: center;
  content: "✓";
  color: #03100b;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(65, 242, 160, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
}

.conversion-list--quiet li {
  color: var(--muted);
}

.conversion-list--quiet li::before {
  content: "";
  background: var(--red);
  box-shadow: 0 0 18px rgba(239, 95, 114, 0.22);
}

.radar-bridge-section {
  background:
    radial-gradient(circle at 50% 44%, rgba(65, 242, 160, 0.075), transparent 30%),
    linear-gradient(135deg, rgba(239, 95, 114, 0.045), transparent 26%, rgba(65, 242, 160, 0.055)),
    linear-gradient(180deg, #06080b 0%, #0a0f12 50%, #07090c 100%);
}

.radar-bridge-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.8rem);
}

.radar-bridge-heading h2 {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.55rem, 5.1vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.radar-bridge-heading p {
  max-width: 470px;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.65;
}

.radar-bridge-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(260px, 0.76fr) minmax(230px, 0.82fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.radar-bridge-card {
  min-height: 305px;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(9, 12, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.radar-bridge-card--problem {
  border-color: rgba(239, 95, 114, 0.38);
}

.radar-bridge-card--solution {
  border-color: rgba(65, 242, 160, 0.4);
}

.radar-bridge-card span {
  display: inline-flex;
  margin-bottom: 1.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.radar-bridge-card--problem span {
  color: var(--red);
  text-shadow: 0 0 18px rgba(239, 95, 114, 0.22);
}

.radar-bridge-card--solution span {
  color: var(--green);
  text-shadow: 0 0 18px rgba(65, 242, 160, 0.22);
}

.radar-bridge-card ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.radar-bridge-card li {
  display: grid;
  grid-template-columns: 0.72rem minmax(0, 1fr);
  gap: 0.75rem;
  color: var(--soft);
  font-size: clamp(0.94rem, 1.08vw, 1.02rem);
  line-height: 1.55;
}

.radar-bridge-card li::before {
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.52rem;
  content: "";
  border-radius: 999px;
}

.radar-bridge-card--problem li::before {
  background: var(--red);
  box-shadow: 0 0 16px rgba(239, 95, 114, 0.28);
}

.radar-bridge-card--solution li::before {
  background: var(--green);
  box-shadow: 0 0 16px rgba(65, 242, 160, 0.28);
}

.radar-core {
  --radar-size: clamp(230px, 25vw, 340px);
  position: relative;
  display: grid;
  min-height: clamp(280px, 32vw, 390px);
  place-items: center;
  isolation: isolate;
}

.radar-core::before {
  position: absolute;
  width: var(--radar-size);
  height: var(--radar-size);
  content: "";
  background:
    radial-gradient(circle, rgba(65, 242, 160, 0.16) 0 2px, transparent 3px),
    repeating-radial-gradient(circle, rgba(65, 242, 160, 0.13) 0 1px, transparent 1px 48px),
    radial-gradient(circle, rgba(65, 242, 160, 0.08), rgba(65, 242, 160, 0.02) 52%, transparent 70%);
  border: 1px solid rgba(65, 242, 160, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 55px rgba(65, 242, 160, 0.12),
    inset 0 0 44px rgba(65, 242, 160, 0.08);
}

.radar-core::after {
  position: absolute;
  width: calc(var(--radar-size) + 54px);
  height: calc(var(--radar-size) + 54px);
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.radar-sweep {
  position: absolute;
  z-index: 1;
  width: var(--radar-size);
  height: var(--radar-size);
  background: conic-gradient(from -26deg, rgba(65, 242, 160, 0.35), rgba(65, 242, 160, 0.02) 54deg, transparent 88deg);
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: radar-scan 7s linear infinite;
}

.radar-core.is-paused .radar-sweep {
  animation-play-state: paused;
  opacity: 0.36;
}

.radar-signal-layer {
  position: absolute;
  z-index: 4;
  width: var(--radar-size);
  height: var(--radar-size);
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.radar-signal {
  position: absolute;
  left: var(--signal-x, 50%);
  top: var(--signal-y, 50%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(var(--signal-scale, 1)) rotate(var(--signal-rotation, 0deg));
  animation: radar-signal-pop var(--signal-duration, 2.6s) ease-out forwards;
  filter: drop-shadow(0 0 10px rgba(65, 242, 160, 0.2));
  will-change: transform, opacity;
}

.radar-signal--candle-up,
.radar-signal--candle-alt {
  width: 1.05rem;
  height: 2.05rem;
}

.radar-signal--candle-up::before,
.radar-signal--candle-alt::before {
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  width: 2px;
  height: 100%;
  content: "";
  background: rgba(65, 242, 160, 0.82);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(65, 242, 160, 0.34);
}

.radar-signal--candle-up::after,
.radar-signal--candle-alt::after {
  position: absolute;
  left: 0.16rem;
  top: 0.55rem;
  width: 0.72rem;
  height: 1.12rem;
  content: "";
  background: rgba(65, 242, 160, 0.72);
  border: 1px solid rgba(185, 255, 216, 0.72);
  border-radius: 3px;
  box-shadow:
    0 0 16px rgba(65, 242, 160, 0.36),
    inset 0 0 10px rgba(255, 255, 255, 0.12);
}

.radar-signal--candle-alt {
  --signal-rotation: -9deg;
}

.radar-signal--candle-alt::after {
  top: 0.38rem;
  height: 1.36rem;
}

.radar-signal--breakout {
  width: 2.6rem;
  height: 2rem;
}

.radar-signal--breakout span {
  position: absolute;
  bottom: 0.2rem;
  width: 0.42rem;
  background: rgba(65, 242, 160, 0.72);
  border: 1px solid rgba(185, 255, 216, 0.52);
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 0 12px rgba(65, 242, 160, 0.28);
}

.radar-signal--breakout span:nth-child(1) {
  left: 0.15rem;
  height: 0.8rem;
}

.radar-signal--breakout span:nth-child(2) {
  left: 0.82rem;
  height: 1.18rem;
}

.radar-signal--breakout span:nth-child(3) {
  left: 1.5rem;
  height: 1.55rem;
}

.radar-signal--breakout i {
  position: absolute;
  right: 0.05rem;
  top: 0;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 2px solid rgba(65, 242, 160, 0.9);
  border-right: 2px solid rgba(65, 242, 160, 0.9);
  transform: rotate(45deg);
  box-shadow: 3px -3px 10px rgba(65, 242, 160, 0.18);
}

.radar-signal--take-profit,
.radar-signal--ticker,
.radar-signal--stop-loss {
  display: inline-flex;
  min-width: 2.25rem;
  min-height: 1.45rem;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.44rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.radar-signal--take-profit {
  color: #04120d;
  background: linear-gradient(135deg, rgba(65, 242, 160, 0.94), rgba(181, 255, 109, 0.88));
  box-shadow: 0 0 20px rgba(65, 242, 160, 0.32);
}

.radar-signal--take-profit::after {
  position: absolute;
  right: -0.18rem;
  top: -0.16rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.72);
}

.radar-signal--stop-loss {
  min-width: 1.75rem;
  min-height: 1.18rem;
  color: #ffd9d9;
  background: rgba(239, 95, 114, 0.15);
  border: 1px solid rgba(239, 95, 114, 0.58);
  box-shadow: 0 0 14px rgba(239, 95, 114, 0.2);
  filter: drop-shadow(0 0 8px rgba(239, 95, 114, 0.22));
}

.radar-signal--ticker {
  color: #b9ffd8;
  background: rgba(65, 242, 160, 0.11);
  border: 1px solid rgba(65, 242, 160, 0.34);
  box-shadow: 0 0 14px rgba(65, 242, 160, 0.16);
}

.radar-signal--volume {
  display: inline-flex;
  align-items: end;
  gap: 0.18rem;
  height: 1.9rem;
}

.radar-signal--volume span {
  width: 0.34rem;
  background: rgba(65, 242, 160, 0.7);
  border-radius: 999px 999px 2px 2px;
  box-shadow: 0 0 12px rgba(65, 242, 160, 0.25);
}

.radar-signal--volume span:nth-child(1) {
  height: 0.6rem;
}

.radar-signal--volume span:nth-child(2) {
  height: 1rem;
}

.radar-signal--volume span:nth-child(3) {
  height: 1.5rem;
}

.radar-signal--rs-line {
  width: 2.65rem;
  height: 1.6rem;
}

.radar-signal--rs-line::before {
  position: absolute;
  inset: auto 0.15rem 0.25rem;
  height: 2px;
  content: "";
  background: rgba(65, 242, 160, 0.68);
  transform: rotate(-24deg);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(65, 242, 160, 0.26);
}

.radar-signal--rs-line::after {
  position: absolute;
  right: 0;
  top: 0.14rem;
  content: "RS";
  color: #b9ffd8;
  font-size: 0.58rem;
  font-weight: 900;
}

.radar-signal--support {
  width: 2.75rem;
  height: 1.15rem;
  border-top: 1px solid rgba(65, 242, 160, 0.55);
  border-bottom: 1px solid rgba(65, 242, 160, 0.2);
  background: linear-gradient(180deg, rgba(65, 242, 160, 0.12), rgba(65, 242, 160, 0.02));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(65, 242, 160, 0.18);
}

.radar-ring {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(65, 242, 160, 0.18);
  border-radius: 50%;
}

.radar-ring--outer {
  width: calc(var(--radar-size) * 0.78);
  height: calc(var(--radar-size) * 0.78);
}

.radar-ring--middle {
  width: calc(var(--radar-size) * 0.52);
  height: calc(var(--radar-size) * 0.52);
}

.radar-ring--inner {
  width: calc(var(--radar-size) * 0.28);
  height: calc(var(--radar-size) * 0.28);
}

.radar-core-label {
  position: relative;
  z-index: 5;
  display: grid;
  width: clamp(7.2rem, 10vw, 9.5rem);
  height: clamp(7.2rem, 10vw, 9.5rem);
  place-items: center;
  color: #03100b;
  background: linear-gradient(135deg, var(--green), #b5ff6d);
  border-radius: 50%;
  box-shadow:
    0 0 42px rgba(65, 242, 160, 0.34),
    0 18px 52px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.radar-core-label strong,
.radar-core-label span {
  display: block;
  line-height: 1;
}

.radar-core-label strong {
  align-self: end;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 900;
}

.radar-core-label span {
  align-self: start;
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
  font-weight: 800;
}

.radar-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.6rem, 3.5vw, 2.6rem);
}

.radar-flow article {
  min-height: 155px;
  padding: 1.05rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(9, 12, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.radar-flow span {
  display: inline-flex;
  margin-bottom: 1.15rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.radar-flow h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: 0;
}

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

@keyframes radar-scan {
  to {
    transform: rotate(360deg);
  }
}

@keyframes radar-signal-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(calc(var(--signal-scale, 1) * 0.58)) rotate(var(--signal-rotation, 0deg));
  }

  14% {
    opacity: 0.95;
  }

  68% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(calc(var(--signal-scale, 1) * 1.08)) rotate(var(--signal-rotation, 0deg));
  }
}

@media (max-width: 980px) {
  .radar-bridge-heading,
  .radar-bridge-grid {
    grid-template-columns: 1fr;
  }

  .radar-bridge-heading p {
    max-width: 650px;
  }

  .radar-bridge-card {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .radar-bridge-heading h2 {
    font-size: clamp(2.18rem, 10.5vw, 3.15rem);
  }

  .radar-core {
    min-height: 275px;
  }

  .radar-flow {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .radar-sweep,
  .radar-signal {
    animation: none;
  }
}

.inside-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(65, 242, 160, 0.11), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(87, 199, 255, 0.07), transparent 25rem),
    linear-gradient(180deg, #06080b 0%, #0a0d12 52%, #07090c 100%);
}

.inside-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.56fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.inside-heading h2,
.use-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.75rem, 5.1vw, 4.9rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.inside-heading p,
.use-copy p {
  max-width: 460px;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.32vw, 1.12rem);
  line-height: 1.62;
}

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

.inside-grid article,
.use-steps article {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(65, 242, 160, 0.11), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.26);
}

.inside-grid article {
  min-height: 225px;
  padding: 1.15rem;
}

.inside-icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.3rem;
  place-items: center;
  color: var(--green);
  background: rgba(65, 242, 160, 0.08);
  border: 1px solid rgba(65, 242, 160, 0.2);
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(65, 242, 160, 0.1);
}

.inside-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inside-grid h3,
.use-steps h3 {
  margin: 0 0 0.62rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.inside-grid p,
.use-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

.delivery-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  color: var(--soft);
  background:
    linear-gradient(135deg, rgba(65, 242, 160, 0.13), rgba(65, 242, 160, 0.035)),
    rgba(8, 13, 16, 0.9);
  border: 1px solid rgba(65, 242, 160, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.delivery-note strong,
.offer-frequency strong {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.delivery-note p {
  margin: 0;
  color: var(--soft);
  font-size: clamp(0.96rem, 1.18vw, 1.06rem);
  line-height: 1.55;
}

.use-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(65, 242, 160, 0.1), transparent 24rem),
    radial-gradient(circle at 16% 82%, rgba(87, 199, 255, 0.065), transparent 24rem),
    linear-gradient(180deg, #07090c 0%, #09100f 48%, #06080b 100%);
}

.use-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.use-copy {
  position: sticky;
  top: 1.25rem;
}

.use-copy h2 {
  margin-bottom: 1rem;
}

.use-steps {
  display: grid;
  gap: 0.85rem;
}

.use-steps article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.35rem;
  min-height: 116px;
  padding: 1rem;
  align-items: start;
}

.use-steps span {
  display: grid;
  grid-row: 1 / span 2;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: #03100b;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(65, 242, 160, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
}

.use-steps h3,
.use-steps p {
  grid-column: 2;
}

.report-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(65, 242, 160, 0.12), transparent 25rem),
    radial-gradient(circle at 18% 78%, rgba(87, 199, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, #06080b 0%, #0a1010 50%, #07090c 100%);
}

.report-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 6vw, 5.25rem);
  align-items: center;
}

.report-copy h2 {
  margin-bottom: 1rem;
}

.report-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
}

.report-mockup {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(65, 242, 160, 0.13), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(9, 12, 15, 0.94);
  border: 1px solid rgba(65, 242, 160, 0.22);
  border-radius: 8px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(65, 242, 160, 0.05);
}

.report-mockup::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  opacity: 0.34;
}

.report-mockup-header,
.market-light,
.report-panels,
.report-study {
  position: relative;
  z-index: 1;
}

.report-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.report-mockup-header span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-mockup-header strong {
  color: #ffffff;
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
}

.market-light {
  display: grid;
  grid-template-columns: 0.8rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.95rem;
  background: rgba(65, 242, 160, 0.06);
  border: 1px solid rgba(65, 242, 160, 0.18);
  border-radius: 8px;
}

.market-light > span {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.28rem;
  background: #d4a342;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(212, 163, 66, 0.45);
}

.market-light strong,
.report-panel strong {
  display: block;
  color: #ffffff;
  line-height: 1.2;
}

.market-light p,
.report-panel p,
.report-study p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.report-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.report-panel {
  min-height: 148px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.report-panel span,
.report-study span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-study {
  margin-top: 0.75rem;
  padding: 0.95rem;
  background: linear-gradient(135deg, rgba(65, 242, 160, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(65, 242, 160, 0.16);
  border-radius: 8px;
}

.offer-product,
.offer-card h3,
.offer-price-compare,
.offer-price,
.offer-anchor,
.offer-cancel,
.offer-list,
.offer-frequency,
.offer-actions,
.faq-item summary,
.faq-item p {
  position: relative;
  z-index: 1;
}

.offer-section {
  background:
    linear-gradient(135deg, rgba(65, 242, 160, 0.09), transparent 38%, rgba(212, 163, 66, 0.045)),
    linear-gradient(180deg, #06080b 0%, #0a0f12 52%, #07090c 100%);
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.offer-copy h2 {
  margin-bottom: 1.25rem;
}

.offer-summary {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: clamp(1.4rem, 2.8vw, 2.2rem);
}

.membership-benefit-card {
  min-height: 225px;
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(65, 242, 160, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(65, 242, 160, 0.05);
}

.membership-benefit-icon {
  display: grid;
  width: 4.45rem;
  height: 4.45rem;
  margin: 0 auto 1.25rem;
  place-items: center;
  color: var(--green);
  background: rgba(65, 242, 160, 0.08);
  border: 1px solid rgba(65, 242, 160, 0.18);
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(65, 242, 160, 0.12);
}

.membership-benefit-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.membership-benefit-card h3 {
  margin: 0 0 0.72rem;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.membership-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.12vw, 0.98rem);
  line-height: 1.52;
}

.offer-card {
  padding: clamp(1.3rem, 2.6vw, 2rem);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.offer-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.offer-product {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.85rem;
}

.offer-product img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(65, 242, 160, 0.14);
}

.offer-price-compare {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  padding: 0.48rem 0.62rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-weight: 800;
}

.offer-price-compare span,
.offer-price-compare small {
  font-size: 0.78rem;
}

.offer-price-compare strong {
  position: relative;
  color: var(--soft);
  font-size: 1.08rem;
  font-weight: 900;
}

.offer-price-compare strong::after {
  position: absolute;
  left: -0.08rem;
  right: -0.08rem;
  top: 50%;
  height: 2px;
  content: "";
  background: rgba(255, 96, 78, 0.9);
  transform: rotate(-7deg);
}

.offer-price {
  display: flex;
  gap: 0.45rem;
  align-items: end;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.offer-price strong {
  font-size: clamp(3rem, 5.4vw, 4.85rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.offer-price span {
  margin-bottom: 0.45rem;
  color: var(--green);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 900;
  line-height: 1;
}

.offer-anchor {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: clamp(0.94rem, 1.16vw, 1.02rem);
  font-weight: 850;
  line-height: 1.42;
}

.offer-cancel {
  margin: 0 0 1.25rem;
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.offer-list {
  display: grid;
  gap: 0.82rem;
  margin: 0 0 1.2rem;
  padding: 0;
  color: var(--soft);
  list-style: none;
}

.offer-frequency {
  margin-bottom: 1.25rem;
  padding: 0.9rem;
  background: rgba(65, 242, 160, 0.06);
  border: 1px solid rgba(65, 242, 160, 0.15);
  border-radius: 8px;
}

.offer-frequency p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.offer-list li {
  display: grid;
  grid-template-columns: 0.55rem minmax(0, 1fr);
  gap: 0.72rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.offer-list li::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.5rem;
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(65, 242, 160, 0.4);
}

.offer-actions {
  display: grid;
  gap: 0.9rem;
}

.offer-actions .primary-cta {
  width: 100%;
}

.offer-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: clamp(5rem, 9vw, 9rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 1.25rem;
  max-width: 360px;
  transform: translateX(calc(-1 * clamp(2rem, 4vw, 4.5rem)));
}

.faq-intro h2 {
  margin-bottom: 1rem;
  max-width: 360px;
  font-size: clamp(2.75rem, 4.65vw, 4.35rem);
}

.faq-intro p {
  max-width: 350px;
}

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

.faq-item {
  padding: 0;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-item summary {
  display: flex;
  min-height: 4.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  place-items: center;
  content: "+";
  color: var(--green);
  background: rgba(65, 242, 160, 0.08);
  border: 1px solid rgba(65, 242, 160, 0.22);
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.faq-item[open] summary::after {
  color: #03100b;
  background: var(--green);
  transform: rotate(45deg);
}

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

.disclaimer-section {
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  background:
    linear-gradient(180deg, #07090c 0%, #05070a 100%),
    #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.disclaimer-shell {
  display: grid;
  grid-template-columns: minmax(160px, 0.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
}

.disclaimer-shell span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
}

.disclaimer-shell h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.disclaimer-shell p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-contact {
  grid-column: 1 / -1;
  padding-top: 0.2rem;
  font-size: 0.74rem;
  line-height: 1.45;
}

.footer-contact a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at 35% 25%, rgba(65, 242, 160, 0.14), transparent 34%),
    rgba(2, 5, 7, 0.82);
  border: 0;
  backdrop-filter: blur(12px);
}

.waitlist-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(65, 242, 160, 0.11), transparent 35%),
    linear-gradient(180deg, rgba(27, 32, 37, 0.98), rgba(10, 14, 17, 0.98));
  border: 1px solid rgba(65, 242, 160, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 42px rgba(65, 242, 160, 0.12);
}

.waitlist-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.waitlist-modal__close svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.waitlist-modal__header {
  max-width: 430px;
  padding-right: 2.4rem;
  margin-bottom: 1.35rem;
}

.waitlist-modal__header span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-modal__header h2 {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.waitlist-modal__header p,
.waitlist-modal__privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.waitlist-modal__form {
  padding: 1rem;
  background: rgba(5, 8, 10, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.waitlist-modal__label {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

#mlb2-43567232.ml-form-embedContainer,
#mlb2-43567232 .ml-form-align-center,
#mlb2-43567232 .ml-form-embedWrapper,
#mlb2-43567232 .ml-form-embedBody,
#mlb2-43567232 .ml-form-formContent,
#mlb2-43567232 .ml-form-fieldRow,
#mlb2-43567232 .ml-field-group,
#mlb2-43567232 form {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-sizing: border-box !important;
}

#mlb2-43567232 input[type="email"] {
  width: 100% !important;
  min-height: 3.15rem;
  padding: 0.85rem 1rem !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: inherit !important;
  font-size: 1rem !important;
  outline: none;
}

#mlb2-43567232 input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

#mlb2-43567232 input[type="email"]:focus {
  border-color: rgba(65, 242, 160, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(65, 242, 160, 0.12);
}

#mlb2-43567232 .ml-form-embedSubmit {
  width: 100%;
  margin: 0.85rem 0 0 !important;
}

#mlb2-43567232 .ml-form-embedSubmit button.primary {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem !important;
  color: #03100b !important;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green), #b9ff6f) !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 34px rgba(65, 242, 160, 0.24);
  font-family: inherit !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

#mlb2-43567232 .ml-form-embedSubmit button.primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

#mlb2-43567232 .row-success {
  padding: 1rem;
  background: rgba(65, 242, 160, 0.09);
  border: 1px solid rgba(65, 242, 160, 0.22);
  border-radius: 8px;
}

#mlb2-43567232 .ml-form-successContent h4 {
  margin: 0 0 0.35rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
}

#mlb2-43567232 .ml-form-successContent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.waitlist-modal__privacy {
  margin-top: 0.9rem;
  font-size: 0.78rem;
}

.waitlist-modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#section-2,
#section-3,
#section-4,
#section-5,
#section-6,
#section-7,
#section-8,
#section-9 {
  scroll-margin-top: 2rem;
}

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    width: min(760px, calc(100% - 36px));
    padding: 4.5rem 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-visual::after {
    width: 70vw;
    height: 70vw;
  }

  .conversion-shell,
  .disclaimer-shell {
    width: min(760px, calc(100% - 36px));
  }

  .conversion-heading,
  .inside-heading,
  .use-shell,
  .report-shell,
  .offer-shell,
  .faq-shell,
  .disclaimer-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .conversion-heading p,
  .inside-heading p,
  .use-copy p,
  .report-copy p,
  .offer-copy p,
  .faq-intro p {
    max-width: 620px;
  }

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

  .delivery-note {
    grid-template-columns: 1fr;
  }

  .use-copy {
    position: static;
  }

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

  .membership-benefits {
    max-width: 760px;
  }

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

  .audience-card {
    min-height: auto;
  }

  .offer-card {
    width: min(100%, 560px);
  }

  .faq-intro {
    position: static;
    max-width: none;
    transform: none;
  }

  .faq-intro h2,
  .faq-intro p {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .top-menu-shell {
    width: min(100% - 28px, 560px);
    min-height: 3.65rem;
  }

  .hero-section {
    min-height: 100svh;
  }

  .hero-shell {
    width: min(100% - 28px, 560px);
    padding: 3.75rem 0 2.25rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 13vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-copy > h2 {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-actions p {
    max-width: none;
  }

  .market-card {
    min-height: 500px;
    padding: 0.85rem;
  }

  .chart-header {
    align-items: center;
  }

  .market-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .market-stats span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.62rem 0.7rem;
  }

  .market-stats strong {
    display: inline;
    margin-top: 0;
  }

  .chart-wrap {
    height: 320px;
  }

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

  .take-profit-popover {
    top: 14%;
    right: 5%;
  }

  .conversion-section {
    padding: 4.5rem 0 5rem;
  }

  .conversion-shell {
    width: min(100% - 28px, 560px);
  }

  .section-kicker {
    margin-bottom: 1.5rem;
  }

  .conversion-heading {
    margin-bottom: 1.8rem;
  }

  .conversion-heading h2,
  .inside-heading h2,
  .use-copy h2,
  .report-copy h2,
  .offer-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.18rem, 10.5vw, 3.15rem);
    line-height: 1.05;
  }

  .conversion-heading p,
  .inside-heading p,
  .use-copy p,
  .report-copy p,
  .offer-copy p,
  .faq-intro p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .membership-benefits {
    grid-template-columns: 1fr;
  }

  .hero-price-note {
    padding: 0.82rem 0.9rem;
    font-size: 0.92rem;
  }

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

  .inside-grid article {
    min-height: auto;
    padding: 1rem;
  }

  .delivery-note {
    padding: 1rem;
  }

  .use-steps article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .use-steps span,
  .use-steps h3,
  .use-steps p {
    grid-column: auto;
    grid-row: auto;
  }

  .report-mockup-header {
    display: grid;
    justify-content: start;
  }

  .report-panels {
    grid-template-columns: 1fr;
  }

  .membership-benefit-card {
    min-height: auto;
  }

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

  .audience-card,
  .offer-card {
    padding: 1rem;
  }

  .conversion-list li {
    font-size: 0.94rem;
  }

  .faq-item summary {
    min-height: 4rem;
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
    font-size: 0.92rem;
  }

  .disclaimer-section {
    padding: 1.25rem 0;
  }

  .disclaimer-shell {
    width: min(100% - 28px, 560px);
    grid-template-columns: 1fr;
    gap: 0.65rem;
    align-items: start;
  }

  .disclaimer-shell p {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
