:root {
  color-scheme: dark;
  --bg: #030609;
  --bg-soft: #07110f;
  --panel: rgba(10, 18, 22, 0.78);
  --panel-strong: rgba(13, 24, 29, 0.94);
  --panel-glow: rgba(72, 255, 151, 0.12);
  --line: rgba(140, 255, 204, 0.18);
  --line-strong: rgba(97, 255, 169, 0.36);
  --text: #f0fff9;
  --muted: #9db7b0;
  --muted-2: #708781;
  --green: #55ff99;
  --cyan: #5edfff;
  --blue: #8aa8ff;
  --amber: #ffd166;
  --red: #ff5d6c;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 8%, rgba(85, 255, 153, 0.18), transparent 25%),
    radial-gradient(circle at 12% 18%, rgba(94, 223, 255, 0.13), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(138, 168, 255, 0.09), transparent 35%),
    linear-gradient(180deg, #05100d 0%, #030609 44%, #05070c 100%);
}

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

body::before {
  z-index: -5;
  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(to bottom, #000 0%, #000 52%, transparent 92%);
}

body::after {
  z-index: -4;
  opacity: 0.52;
  background:
    radial-gradient(circle at 74% 20%, transparent 0 10%, rgba(85, 255, 153, 0.08) 10.3% 10.7%, transparent 11% 20%, rgba(94, 223, 255, 0.055) 20.3% 20.7%, transparent 21% 31%, rgba(85, 255, 153, 0.045) 31.3% 31.7%, transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(94, 223, 255, 0.035) 91px 92px, transparent 93px 180px);
  animation: scanfield 34s linear infinite;
}

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

img {
  max-width: 100%;
}

.signal-orbit {
  position: fixed;
  right: -280px;
  top: -260px;
  width: 820px;
  height: 820px;
  z-index: -3;
  border-radius: 50%;
  border: 1px solid rgba(85, 255, 153, 0.23);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(85, 255, 153, 0.12) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(94, 223, 255, 0.09) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle, transparent 0 24%, rgba(85, 255, 153, 0.035) 24.4% 24.8%, transparent 25.2% 48%, rgba(94, 223, 255, 0.04) 48.4% 48.8%, transparent 49.2% 70%, rgba(85, 255, 153, 0.035) 70.4% 70.8%, transparent 71.2%);
  box-shadow: inset 0 0 120px rgba(85, 255, 153, 0.07), 0 0 110px rgba(94, 223, 255, 0.06);
  animation: radarPulse 5s ease-in-out infinite;
}

.signal-orbit::before,
.signal-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(94, 223, 255, 0.16);
}

.signal-orbit::before {
  inset: 128px;
}

.signal-orbit::after {
  inset: 0;
  background:
    conic-gradient(from 140deg, rgba(85, 255, 153, 0.34), rgba(94, 223, 255, 0.18) 10%, transparent 24%, transparent 100%);
  filter: blur(0.3px);
  animation: spin 9s linear infinite;
  mask-image: radial-gradient(circle, transparent 0 20%, #000 21% 72%, transparent 73%);
}

.section-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 60px);
  background: rgba(3, 6, 9, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.brand,
.nav,
.hero-actions,
.trust-row,
.ticker-track,
.footer,
.token-row,
.flow-line,
.rank-row,
.tg-title {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(85, 255, 153, 0.34), inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.nav {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--green);
}

.top-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 950;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.top-cta {
  padding: 0 20px;
  color: var(--green);
  background: rgba(85, 255, 153, 0.1);
  border: 1px solid rgba(85, 255, 153, 0.32);
}

.primary-btn {
  padding: 0 24px;
  color: #03110d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 18px 55px rgba(85, 255, 153, 0.26);
}

.secondary-btn {
  padding: 0 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.top-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 65px rgba(85, 255, 153, 0.16);
}

.btn-icon {
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: min(900px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  padding: 70px 0 54px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 44%;
  z-index: -1;
  background: radial-gradient(ellipse at 45% 100%, rgba(85, 255, 153, 0.1), transparent 58%);
}

.hero-copy,
.hero-visual,
.split-section > *,
.signal-layout > *,
.proof-grid > *,
.pricing > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(52px, 8.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  letter-spacing: 0;
}

.hero-lede,
.section-lede,
.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-lede {
  max-width: 690px;
}

.mobile-break {
  display: none;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 24px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  color: #c6ddd7;
  font-size: 13px;
}

.trust-row span {
  position: relative;
  padding: 9px 12px 9px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(85, 255, 153, 0.8);
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.dashboard-showcase::before {
  content: "";
  position: absolute;
  inset: 48px 0 0 8%;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(85, 255, 153, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(94, 223, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(94, 223, 255, 0.13), transparent 60%);
  background-size: 38px 38px, 38px 38px, auto;
  filter: blur(0.1px);
  opacity: 0.7;
}

.app-preview {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(660px, 100%);
  min-height: 550px;
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(10, 18, 22, 0.96), rgba(4, 9, 13, 0.98)),
    var(--panel-strong);
  box-shadow: var(--shadow), 0 0 120px rgba(85, 255, 153, 0.08);
  backdrop-filter: blur(18px);
  animation: floaty 12s ease-in-out infinite;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 10%, rgba(85, 255, 153, 0.1) 45%, transparent 58%);
  transform: translateX(-120%);
  animation: glass-sweep 12s ease-in-out infinite;
}

.preview-sidebar {
  position: relative;
  z-index: 1;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(1, 5, 9, 0.96), rgba(3, 10, 12, 0.94));
}

.preview-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.15;
}

.preview-logo img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(85, 255, 153, 0.28);
}

.preview-nav {
  display: grid;
  gap: 12px;
}

.preview-nav a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.preview-nav a:hover,
.preview-nav a:focus-visible {
  color: var(--text);
  background: rgba(94, 223, 255, 0.08);
  outline: 0;
  transform: translateX(2px);
}

.preview-nav .active {
  color: var(--green);
  background: rgba(85, 255, 153, 0.1);
  border: 1px solid rgba(85, 255, 153, 0.21);
}

.preview-access {
  margin-top: 38px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(85, 255, 153, 0.13), rgba(94, 223, 255, 0.05));
  border: 1px solid rgba(85, 255, 153, 0.22);
}

.preview-access small,
.coin-cell small {
  display: block;
  color: var(--muted);
}

.preview-access strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--text);
  font-size: 31px;
}

.preview-access a {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 10px;
  color: #03110d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 12px;
  font-weight: 950;
}

.preview-feed {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.preview-feed::after {
  content: "LIVE";
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(85, 255, 153, 0.18);
  font-size: 78px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.feed-head,
.feed-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) 0.65fr 0.65fr 0.55fr;
  gap: 12px;
  align-items: center;
}

.feed-head {
  margin-bottom: 18px;
  color: #93a7c0;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.feed-row {
  position: relative;
  min-height: 80px;
  margin-bottom: 12px;
  padding: 12px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.feed-row::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, rgba(85, 255, 153, 0.12), transparent);
  transition: opacity 180ms ease;
}

.feed-row:hover::before {
  opacity: 1;
}

.feed-row.live {
  border-color: rgba(85, 255, 153, 0.32);
  box-shadow: inset 0 0 0 1px rgba(85, 255, 153, 0.08), 0 0 44px rgba(85, 255, 153, 0.08);
}

.feed-row.live .coin-cell i {
  animation: pulse-tile 3.2s ease-in-out infinite;
}

.feed-row.winner em {
  color: var(--green);
}

.feed-row.muted {
  opacity: 0.56;
}

.coin-cell {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.coin-cell i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(85, 255, 153, 0.92), rgba(94, 223, 255, 0.72));
  box-shadow: 0 0 22px rgba(85, 255, 153, 0.18);
}

.coin-cell b,
.coin-cell small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-row strong,
.feed-row em {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-weight: 950;
}

.feed-row em {
  color: var(--cyan);
}

.terminal-card,
.radar-panel,
.mini-feed,
.telegram-card,
.leaderboard,
.ops-card,
.price-card,
.custom-card,
.intel-card,
.buyer-card,
.access-grid article,
.faq-grid article,
.feature-grid article,
.signal-points div,
.referral-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(90deg, rgba(85, 255, 153, 0.08), rgba(94, 223, 255, 0.06), rgba(255, 209, 102, 0.06));
}

.ticker-track {
  width: max-content;
  gap: 48px;
  padding: 18px 0;
  animation: marquee 42s linear infinite;
}

.ticker-track span {
  color: #e3fff7;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.split-section,
.custom-section,
.access-section,
.buyer-section,
.faq-section,
.signals-section,
.proof-section,
.pricing,
.dyor-section,
.intelligence-section,
.referral-section {
  padding: clamp(76px, 10vw, 136px) 0;
}

.custom-section,
.intelligence-section,
.access-section,
.buyer-section,
.faq-section,
.dyor-section,
.referral-section {
  padding-top: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 58px;
  align-items: start;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 34px;
}

.feature-grid,
.intel-grid,
.access-grid,
.faq-grid,
.buyer-list,
.signal-points {
  display: grid;
  gap: 14px;
}

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

.feature-grid article {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 25px;
  border-radius: var(--radius);
}

.feature-grid article::after,
.intel-card::after,
.signal-points div::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 223, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 32px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #03110d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.feature-grid p,
.custom-card p,
.buyer-card p,
.access-grid p,
.faq-grid p,
.signal-points p,
.ops-card li,
.fine-print,
.intel-card p,
.referral-card p {
  color: var(--muted);
  line-height: 1.66;
}

.custom-card,
.referral-card,
.buyer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(25px, 4vw, 46px);
  border-radius: 24px;
}

.custom-card {
  background:
    linear-gradient(135deg, rgba(85, 255, 153, 0.15), rgba(94, 223, 255, 0.07)),
    rgba(10, 18, 22, 0.86);
}

.trust-stack,
.buyer-list {
  display: grid;
  gap: 12px;
}

.trust-stack div,
.buyer-list div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stack strong,
.trust-stack span,
.buyer-list strong,
.buyer-list span {
  display: block;
}

.trust-stack strong,
.buyer-list strong,
.faq-grid h3 {
  color: var(--green);
}

.trust-stack span,
.buyer-list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

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

.intel-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 25px;
  border-radius: var(--radius);
}

.intel-card.accent {
  border-color: rgba(255, 209, 102, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 209, 102, 0.14), rgba(85, 255, 153, 0.08)),
    var(--panel);
}

.intel-card span {
  display: inline-grid;
  place-items: center;
  min-height: 29px;
  margin-bottom: 34px;
  padding: 0 11px;
  border-radius: 8px;
  color: #03110d;
  background: linear-gradient(135deg, var(--amber), var(--green));
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.signal-layout,
.proof-grid,
.pricing {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
}

.telegram-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 36, 47, 0.96), rgba(13, 22, 30, 0.96));
}

.telegram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(85, 255, 153, 0.08), transparent 44%),
    radial-gradient(circle at 86% 12%, rgba(94, 223, 255, 0.16), transparent 26%);
  pointer-events: none;
}

.telegram-card > * {
  position: relative;
}

.tg-title {
  justify-content: space-between;
  gap: 14px;
  color: var(--amber);
  margin-bottom: 18px;
}

.tg-title span {
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(85, 255, 153, 0.12);
}

.telegram-card p {
  margin-bottom: 8px;
  color: #eef8ff;
}

.telegram-card .mint {
  color: var(--cyan);
  word-break: break-all;
}

.tg-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.tg-buttons span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 9px;
  background: rgba(94, 223, 255, 0.12);
  border: 1px solid rgba(94, 223, 255, 0.2);
  font-size: 13px;
  font-weight: 900;
}

.signal-points div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
}

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

.access-grid article,
.faq-grid article {
  padding: 25px;
  border-radius: var(--radius);
}

.access-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #03110d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.referral-card {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(85, 255, 153, 0.13), transparent 44%),
    rgba(10, 18, 22, 0.9);
}

.referral-form {
  display: grid;
  gap: 12px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(4, 12, 11, 0.72);
}

.referral-form label {
  font-weight: 950;
}

.referral-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.referral-input-row input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
}

.referral-input-row button,
.copy-referral {
  min-height: 50px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #03110d;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

#referralOutput {
  display: block;
  overflow-wrap: anywhere;
}

.referral-result {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid rgba(85, 255, 153, 0.25);
  border-radius: 12px;
  background: rgba(85, 255, 153, 0.08);
}

.referral-result code {
  color: var(--green);
}

.buyer-card {
  background:
    linear-gradient(180deg, rgba(94, 223, 255, 0.09), rgba(85, 255, 153, 0.08)),
    rgba(10, 18, 22, 0.9);
}

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

.buyer-list div {
  min-height: 134px;
}

.reviews-section {
  padding-top: 90px;
}

.reviews-section .section-heading {
  max-width: 880px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.review-form,
.review-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(85, 255, 153, 0.08), rgba(94, 223, 255, 0.04)),
    rgba(5, 13, 15, 0.92);
  box-shadow: var(--shadow);
}

.review-form {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.review-form label,
.rating-field legend {
  font-weight: 950;
  color: var(--text);
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
}

.review-form textarea {
  resize: vertical;
  min-height: 132px;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: 2px solid rgba(94, 223, 255, 0.45);
  border-color: rgba(94, 223, 255, 0.5);
}

.review-form button {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #03110d;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.rating-field {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-field small {
  color: var(--muted);
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  width: fit-content;
}

.star-rating input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.star-rating label {
  color: rgba(255, 255, 255, 0.22);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease, text-shadow 160ms ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255, 209, 102, 0.35);
}

.star-rating label:hover {
  transform: translateY(-2px);
}

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

.review-card {
  display: grid;
  gap: 14px;
  min-height: 190px;
  padding: 22px;
}

.review-card:first-child {
  grid-column: 1 / -1;
  min-height: 150px;
}

.review-stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(255, 209, 102, 0.22);
}

.review-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}

.review-card span {
  color: var(--muted);
  font-weight: 850;
}

#reviewOutput {
  min-height: 20px;
  color: var(--green);
  font-weight: 850;
}

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

.leaderboard,
.ops-card,
.price-card {
  padding: 26px;
  border-radius: 24px;
}

.leaderboard {
  background:
    linear-gradient(180deg, rgba(85, 255, 153, 0.08), rgba(94, 223, 255, 0.04)),
    var(--panel);
}

.rank-row {
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row span {
  color: var(--green);
  font-weight: 950;
}

.rank-row strong {
  color: var(--cyan);
}

.rank-row.fresh {
  position: relative;
  margin: 6px 0 8px;
  padding-inline: 14px;
  border: 1px solid rgba(255, 209, 102, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.16), rgba(85, 255, 153, 0.08), rgba(94, 223, 255, 0.06));
  box-shadow: 0 0 36px rgba(255, 209, 102, 0.08);
}

.rank-row.fresh::after {
  content: "new";
  padding: 3px 8px;
  border-radius: 999px;
  color: #06110d;
  background: linear-gradient(135deg, var(--amber), var(--green));
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rank-row.fresh strong {
  color: var(--amber);
}

.ops-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ops-card li {
  position: relative;
  padding: 10px 0 10px 24px;
}

.ops-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(85, 255, 153, 0.75);
}

.pricing {
  align-items: center;
  padding-top: 100px;
}

.price-card {
  background:
    linear-gradient(180deg, rgba(85, 255, 153, 0.14), rgba(10, 18, 22, 0.94)),
    var(--panel);
}

.plan-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 22px 0 24px;
}

.price strong {
  font-size: clamp(52px, 8vw, 84px);
  line-height: 0.9;
}

.price span {
  color: var(--muted);
  padding-bottom: 8px;
}

.full {
  width: 100%;
}

.fine-print {
  margin: 18px 0 0;
  font-size: 13px;
}

.dyor-section {
  padding-bottom: 34px;
}

.dyor-section p {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(80, 255, 150, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(80, 255, 150, 0.12), rgba(85, 210, 255, 0.06)),
    rgba(3, 13, 13, 0.86);
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.dyor-section strong,
.dyor-section a {
  color: var(--text);
  font-weight: 950;
}

.dyor-section a {
  text-decoration: none;
  border-bottom: 1px solid rgba(85, 210, 255, 0.5);
}

.footer {
  justify-content: space-between;
  gap: 14px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 44px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.25deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes scanfield {
  0% { transform: translateX(-8%); }
  100% { transform: translateX(8%); }
}

@keyframes radarPulse {
  0%, 100% {
    opacity: 0.56;
    transform: scale(1);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.012);
  }
}

@keyframes glass-sweep {
  0%, 45% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes pulse-tile {
  0%, 100% { box-shadow: 0 0 20px rgba(85, 255, 153, 0.18); }
  50% { box-shadow: 0 0 34px rgba(85, 255, 153, 0.42); }
}

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

@media (max-width: 1000px) {
  .topbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split-section,
  .custom-card,
  .referral-card,
  .buyer-card,
  .access-grid,
  .faq-grid,
  .signal-layout,
  .proof-grid,
  .reviews-layout,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 24px, 1200px);
  }

  .topbar {
    padding: 14px 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .top-cta {
    width: 100%;
  }

  .nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    max-width: 370px;
    font-size: 40px;
    line-height: 0.98;
  }

  h2 {
    font-size: 35px;
    line-height: 1;
  }

  .mobile-break {
    display: block;
  }

  .hero-lede,
  .section-lede,
  .pricing-copy p {
    font-size: 16px;
  }

  .hero-actions a,
  .trust-row,
  .trust-row span {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .feature-grid,
  .intel-grid,
  .buyer-list,
  .review-board,
  .referral-input-row {
    grid-template-columns: 1fr;
  }

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

  .dashboard-showcase::before {
    inset: 20px 0 0 0;
  }

  .app-preview {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    display: block;
    border-radius: 20px;
    animation: none;
  }

  .preview-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .feed-head {
    display: none;
  }

  .preview-feed {
    padding: 18px 14px;
  }

  .preview-feed::after {
    display: none;
  }

  .feed-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .feed-row strong,
  .feed-row em {
    padding-left: 53px;
  }

  .custom-card,
  .referral-card,
  .buyer-card,
  .review-form,
  .review-card,
  .telegram-card,
  .leaderboard,
  .ops-card,
  .price-card,
  .feature-grid article,
  .intel-card,
  .access-grid article,
  .faq-grid article,
  .signal-points div {
    border-radius: 16px;
  }

  .tg-buttons {
    grid-template-columns: 1fr;
  }

  .rank-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 24px, 1200px);
  }
}
