:root {
  --bg: #0A0E17;
  --bg-alt: #0D1220;
  --card: #131A2B;
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #E9ECF5;
  --text-muted: #8A93AC;
  --text-dim: #5D6580;
  --accent: #B7FF3E;
  --accent-dark: #8FD82A;
  --accent-soft: rgba(183, 255, 62, 0.12);
  --red: #FF5C6C;
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1440px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#hero-signup {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Prevent flex/grid items from blowing out their container beyond viewport width */
.site-header__inner>*,
.hero__inner>*,
.how__grid>*,
.who__grid>*,
.stats__grid>*,
.get__grid>*,
.header-badge,
.header-badge__text,
.logo {
  min-width: 0;
}

.section {
  padding: 52px 0;
}

.section__title {
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  font-weight: 800;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section__title--center {
  text-align: center;
}

.section__title--dash {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section__title--dash::before,
.section__title--dash::after {
  content: "";
  height: 1px;
  width: 36px;
  background: var(--card-border);
  flex-shrink: 0;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(183, 255, 62, 0.45);
  text-underline-offset: 6px;
}

.text-accent {
  color: var(--accent);
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

/* Background ambience */
body {
  background-image:
    radial-gradient(circle at 82% 8%, rgba(183, 255, 62, 0.08), transparent 40%),
    radial-gradient(circle at 10% 30%, rgba(124, 108, 246, 0.08), transparent 35%);
}

/* ---------------- Buttons & Inputs ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease;
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #0B0F19;
  box-shadow: 0 10px 30px -8px rgba(183, 255, 62, 0.55);
}

.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
  display: flex;
}

/* Telegram / Discord contact buttons */
.form-card__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}

.form-card__actions .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.8rem;
}

.btn--telegram {
  background: linear-gradient(180deg, #38B4F0, #1D93D6);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(56, 180, 240, 0.6);
}

.btn--telegram:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--discord {
  background: linear-gradient(180deg, #6D78F2, #5865F2);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(88, 101, 242, 0.6);
}

.btn--discord:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 0.78rem;
}

.input-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  margin-bottom: 12px;
}

.input-field input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.92rem;
  width: 100%;
}

.input-field input::placeholder {
  color: var(--text-dim);
}

/* ---------------- Header ---------------- */
.site-header {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__text {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
}

.logo__text b {
  color: var(--accent);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-badge:hover {
  background: rgba(183, 255, 62, 0.08);
  border-color: rgba(183, 255, 62, 0.35);
  transform: translateY(-1px);
}

.header-badge__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 255, 62, 0.06);
  flex-shrink: 0;
}

.header-badge__text {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
}

.header-badge__text b {
  color: var(--accent);
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}

.header-badge__text small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

/* ---------------- Hero ---------------- */
.hero {
  padding: 36px 0 24px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  mask-image: linear-gradient(100deg, transparent, transparent 34%, #000 46%, #000 100%);
}

.hero__bg-chart {
  width: 100%;
  height: 100%;
}

.hero__bg-line {
  stroke: rgba(183, 255, 62, 0.35);
  stroke-width: 2;
}

.hero__bg-candles rect {
  fill: rgba(255, 92, 108, 0.7);
}

.hero__bg-candles rect.up {
  fill: rgba(183, 255, 62, 0.7);
}

.hero__bg-tag {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(124, 108, 246, 0.18);
  color: #B7B2FF;
  border: 1px solid rgba(124, 108, 246, 0.35);
  backdrop-filter: blur(2px);
}

.hero__bg-tag--sell {
  background: rgba(255, 92, 108, 0.15);
  color: #FF9CA8;
  border-color: rgba(255, 92, 108, 0.32);
}

.hero__bg-tag--buy1 {
  top: 8%;
  left: 90%;
}

.hero__bg-tag--buy2 {
  top: 36%;
  left: 95%;
}

.hero__bg-tag--sell {
  top: 60%;
  left: 91%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.hero__title {
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.65rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 0 22px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__feature-icon {
  display: flex;
  align-items: center;
  height: 36px;
}

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

.hero__social p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__social b {
  color: var(--text);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--card);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar--sm {
  width: 34px;
  height: 34px;
  margin-left: 0;
  border-width: 0;
}

/* ---- Form card (shared: hero + CTA) ---- */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-card__eyebrow {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.form-card__title {
  margin: 2px 0 18px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
}

.form-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}

.form-card__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-card__meta-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 255, 62, 0.06);
}

.form-card__meta-item div {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.form-card__meta-item span {
  color: var(--text-dim);
}

.form-card__meta-item b {
  color: var(--text);
  font-weight: 600;
}

.form-card__format {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.form-card__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.form-card__perks li {
  position: relative;
  padding-left: 26px;
  font-size: 0.85rem;
  color: var(--text);
}

.form-card__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23B7FF3E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 10px 10px;
  border: 1px solid rgba(183, 255, 62, 0.4);
}

.form-card__note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  margin: 14px 0 0;
}

/* Countdown (CTA form card) */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.countdown__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 4px;
  text-align: center;
}

.countdown__item b {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.countdown__item span {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* ---------------- Stats ---------------- */
.stats {
  padding: 44px 0;
}

.stats__panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 24px;
}

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

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  position: relative;
}

.stats__item::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: var(--card-border);
}

.stats__item:last-child::after {
  display: none;
}

.stats__item b {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.stats__item>span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------------- Get section ---------------- */
.get__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.get__item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--card), rgba(19, 26, 43, 0.7));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  transition: transform .35s cubic-bezier(.16, .8, .24, 1), border-color .3s ease, box-shadow .3s ease;
}

.get__grid .get__item:hover {
  transform: translateY(-6px) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  border-color: rgba(183, 255, 62, 0.4);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(183, 255, 62, 0.08) inset;
}

.get__item .get__num {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}

.get__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 24px -8px rgba(183, 255, 62, 0.45);
  margin-bottom: 20px;
  transition: transform .35s cubic-bezier(.16, .8, .24, 1);
}

.get__item:hover .get__icon {
  transform: scale(1.08) rotate(-4deg);
}

.get__item h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.get__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ---------------- How section ---------------- */
.how__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: start;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 0.98rem;
  color: var(--text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23B7FF3E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px 12px;
  border: 1px solid rgba(183, 255, 62, 0.4);
}

.how__note {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.chart-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.chart-card__toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.76rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.chart-card__pair {
  color: var(--text);
  font-weight: 700;
}

.chart-card__spacer {
  flex: 1;
}

.chart-card__watch-title {
  width: 220px;
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 600;
  padding-left: 16px;
  border-left: 1px solid var(--card-border);
}

.chart-card__main {
  display: flex;
}

.chart-card__main>* {
  min-width: 0;
}

.chart-card__tools {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 12px;
  border-right: 1px solid var(--card-border);
}

.chart-card__tools span {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.chart-card__body {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 8px 46px 0 6px;
}

.chart-svg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
}

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

.candles rect {
  fill: var(--red);
  rx: 1;
}

.candles rect.up {
  fill: var(--accent);
}

.chart-card__axis {
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0 20px;
  font-size: 0.68rem;
  color: var(--text-dim);
}

.chart-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--card-border);
  font-size: 0.7rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 6px;
}

.watchlist-card {
  width: 220px;
  flex-shrink: 0;
  padding: 16px;
  border-left: 1px solid var(--card-border);
}

.watchlist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.watchlist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--card-border);
}

.watchlist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.watchlist span {
  color: var(--text-muted);
  flex: 1;
}

.watchlist b {
  font-weight: 600;
  margin-right: 10px;
  font-size: 0.78rem;
}

.watchlist em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  min-width: 48px;
  text-align: right;
}

.watchlist .up {
  color: var(--accent);
}

.watchlist .down {
  color: var(--red);
}

.watchlist-card__analysis {
  margin: 0;
  font-size: 0.76rem;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  padding-top: 12px;
  line-height: 1.5;
}

.watchlist-card__analysis b {
  color: var(--text);
}

/* ---------------- Testimonials ---------------- */
.testimonials__wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  padding-bottom: 4px;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.tm-card {
  flex: 0 0 calc((100% - 40px)/3);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.tm-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tm-card__head b {
  display: block;
  font-size: 0.9rem;
}

.tm-card__time {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.stars {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.tm-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.tm-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, border-color .15s ease;
}

.tm-arrow:hover {
  color: var(--accent);
  border-color: rgba(183, 255, 62, 0.4);
}

.tm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.tm-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.tm-dots span.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ---------------- Who / CTA ---------------- */
.who__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.who__item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.who__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who__item b {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--accent);
}

.who__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.who__center {
  text-align: center;
}

.who__center h3 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
}

.who__center p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 auto 20px;
  max-width: 340px;
}

.who__center-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(183, 255, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------- FAQ ---------------- */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 6px 24px;
}

.faq-item {
  height: fit-content;
  border-bottom: 1px solid var(--card-border);
}

.faq__grid>.faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  color: var(--text);
  padding: 18px 0;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
}

.faq-item__q .chev {
  transition: transform .2s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .chev {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-item__a p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ---------------- Contact ---------------- */
.contact__card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 44px 32px;
}

.contact__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(183, 255, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.contact__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 24px;
}

.contact__btn {
  display: inline-flex;
}

/* ---------------- Footer ---------------- */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--card-border);
}

.site-footer__inner {
  text-align: center;
}

.site-footer__inner p {
  margin: 0 0 6px;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.site-footer__disclaimer {
  font-size: 0.72rem !important;
  max-width: 760px;
  margin: 0 auto !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 1025px) {
  .chart-card__tools {
    display: flex;
  }
}

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

  .hero__form-wrap {
    max-width: 480px;
  }

  .get__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
  }

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

  .who__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .who__item {
    text-align: left;
  }

  .who__form-wrap {
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
  }

  .who__form-wrap .form-card {
    border-radius: 0;
  }

  .tm-card {
    flex-basis: calc((100% - 20px)/2);
  }
}

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

  .section__title--dash {
    display: block;
  }

  .section__title--dash::before,
  .section__title--dash::after {
    display: none;
  }

  .site-header__inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-badge__text small {
    display: none;
  }

  .hero {
    padding-top: 32px;
  }

  .hero__bg {
    display: none;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .stats__item:nth-child(2n)::after {
    display: none;
  }

  .stats__item:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -12px;
    height: 1px;
    background: var(--card-border);
  }

  .get__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .get__item {
    padding: 26px 22px 24px;
  }

  .chart-card__main {
    flex-direction: column;
  }

  .chart-card__watch-title {
    display: none;
  }

  .chart-card__body {
    padding: 10px 46px 16px 6px;
    height: 240px;
  }

  .watchlist-card {
    width: auto;
    border-left: none;
    border-top: 1px solid var(--card-border);
  }

  .faq__grid {
    grid-template-columns: 1fr;
    padding: 4px 20px;
  }

  .faq__grid>.faq-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--card-border);
  }

  .faq__grid>.faq-item:last-child {
    border-bottom: none;
  }

  .tm-card {
    flex-basis: 100%;
  }

  .who__center h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .form-card {
    padding: 20px;
  }

  .who__form-wrap {
    margin-left: -16px;
    margin-right: -16px;
  }

  .countdown__item b {
    font-size: 1.15rem;
  }

  .logo__text {
    font-size: 0.85rem;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    row-gap: 24px;
  }

  .stats__item b {
    font-size: 1rem;
  }

  .stats__panel {
    padding: 24px 16px;
  }

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

/* ==========================================================================
   2026 Enhancements — motion, depth & live-feel micro-interactions
   ========================================================================== */

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

/* ---- Grain / noise texture ---- */
/* Disabled: fixed full-viewport mix-blend-mode + SVG feTurbulence forces
   the browser to recomposite/repaint the entire page continuously, which
   is very heavy on low-end GPUs. The visual effect was barely visible
   (0.035 opacity) so it's not worth the cost. */
.noise-overlay {
  display: none;
}

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #7CFFC4, var(--accent));
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
  box-shadow: 0 0 12px rgba(183, 255, 62, 0.6);
  transition: width 0.1s ease-out;
}

/* ---- Header scrolled state ---- */
.site-header {
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(8, 11, 18, 0.92);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}

/* ---- Ticker marquee ---- */
.ticker {
  border-bottom: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(183, 255, 62, 0.04), transparent);
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__set {
  display: flex;
  align-items: center;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 10px 22px;
  border-right: 1px solid var(--card-border);
  font-variant-numeric: tabular-nums;
}

.ticker__item b {
  color: var(--text);
  font-weight: 700;
}

.ticker__item em {
  font-style: normal;
  font-weight: 700;
}

.ticker__item em.up {
  color: var(--accent);
}

.ticker__item em.down {
  color: var(--red);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

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

/* ---- Gradient shift (progress bar + accent text) ---- */
@keyframes gradientShift {
  to {
    background-position: 200% center;
  }
}

.text-accent {
  background: linear-gradient(90deg, var(--accent), #7CFFC4 45%, var(--accent) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s linear infinite;
}

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, .8, .24, 1), transform .7s cubic-bezier(.16, .8, .24, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.get__grid .get__item:nth-child(1) {
  transition-delay: 0.02s;
}

.get__grid .get__item:nth-child(2) {
  transition-delay: 0.08s;
}

.get__grid .get__item:nth-child(3) {
  transition-delay: 0.14s;
}

.get__grid .get__item:nth-child(4) {
  transition-delay: 0.20s;
}

.get__grid .get__item:nth-child(5) {
  transition-delay: 0.26s;
}

.get__grid .get__item:nth-child(6) {
  transition-delay: 0.32s;
}

/* ---- Spotlight cursor-follow glow on cards ---- */
.spotlight-card {
  position: relative;
  isolation: isolate;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--sx, 50%) var(--sy, 50%), rgba(183, 255, 62, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card>* {
  position: relative;
  z-index: 1;
}

/* ---- Tilt cards ---- */
.tilt-card {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform .35s cubic-bezier(.16, .8, .24, 1), border-color .3s ease, box-shadow .3s ease;
}

.tilt-card:hover {
  border-color: rgba(183, 255, 62, 0.35);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

/* ---- Buttons: shine sweep + idle glow pulse ---- */
.btn--primary {
  position: relative;
  overflow: hidden;
  animation: btnPulse 3.2s ease-in-out infinite;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
}

.btn--primary:hover::after {
  left: 130%;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 10px 30px -8px rgba(183, 255, 62, 0.55);
  }

  50% {
    box-shadow: 0 10px 40px -4px rgba(183, 255, 62, 0.85);
  }
}

/* ---- Avatar live pulse ---- */
.avatar-stack {
  position: relative;
  flex-shrink: 0;
}

.avatar-stack::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---- Count-up numbers ---- */
.count {
  font-variant-numeric: tabular-nums;
}

/* ---- Chart draw-in animation ---- */
.candles rect {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0.3);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16, .8, .24, 1);
}

.chart-card.in-view .candles rect {
  opacity: 1;
  transform: scaleY(1);
}

.chart-card.in-view .candles rect:nth-child(1) {
  transition-delay: .05s;
}

.chart-card.in-view .candles rect:nth-child(2) {
  transition-delay: .10s;
}

.chart-card.in-view .candles rect:nth-child(3) {
  transition-delay: .15s;
}

.chart-card.in-view .candles rect:nth-child(4) {
  transition-delay: .20s;
}

.chart-card.in-view .candles rect:nth-child(5) {
  transition-delay: .25s;
}

.chart-card.in-view .candles rect:nth-child(6) {
  transition-delay: .30s;
}

.chart-card.in-view .candles rect:nth-child(7) {
  transition-delay: .35s;
}

.chart-card.in-view .candles rect:nth-child(8) {
  transition-delay: .40s;
}

.chart-card.in-view .candles rect:nth-child(9) {
  transition-delay: .45s;
}

.chart-card.in-view .candles rect:nth-child(10) {
  transition-delay: .50s;
}

.chart-card.in-view .candles rect:nth-child(11) {
  transition-delay: .55s;
}

.chart-card.in-view .candles rect:nth-child(12) {
  transition-delay: .60s;
}

.chart-card.in-view .candles rect:nth-child(13) {
  transition-delay: .65s;
}

.chart-card.in-view .candles rect:nth-child(14) {
  transition-delay: .70s;
}

.chart-card.in-view .candles rect:nth-child(15) {
  transition-delay: .75s;
}

/* ---- Hero background: gentle drift ---- */
.hero__bg-candles {
  animation: driftUp 8s ease-in-out infinite;
}

.hero__bg-candles--right {
  animation-delay: -3s;
}

@keyframes driftUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero__bg-tag {
  animation: floatTag 4.5s ease-in-out infinite;
}

.hero__bg-tag--buy2 {
  animation-delay: -1.5s;
}

.hero__bg-tag--sell {
  animation-delay: -3s;
}

@keyframes floatTag {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .noise-overlay {
    opacity: 0.02;
  }

  .ticker__item {
    font-size: 0.72rem;
    padding: 8px 16px;
  }
}

/* ---------------- Sticky contact bar ---------------- */
.sticky-cta {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.16, .8, .24, 1), opacity .4s ease;
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(19, 26, 43, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  padding: 14px 24px;
  box-shadow: 0 -16px 40px -16px rgba(0, 0, 0, 0.6);
}

.sticky-cta__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.sticky-cta__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .sticky-cta__inner {
    padding: 12px 16px;
    border-radius: 0;
    gap: 10px;
  }

  .sticky-cta__label {
    display: none;
  }

  .sticky-cta__buttons {
    width: 100%;
  }

  .sticky-cta__buttons .btn {
    flex: 1;
  }
}