/* mafia.bet — premium dark SaaS design system */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Sora:wght@400;500;600;700&display=swap");

:root {
  --bg: #0b0f14;
  --bg-elevated: #111827;
  --bg-panel: #151c27;
  --bg-panel-hover: #1a2332;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #e8edf5;
  --text-muted: #93a0b4;
  --text-dim: #6b778c;
  --accent: #2dd4a8;
  --accent-dim: rgba(45, 212, 168, 0.14);
  --accent-strong: #1fb889;
  --danger: #f07178;
  --warn: #e8b84a;
  --live: #ff5a5f;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Sora", sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(45, 212, 168, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(56, 120, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #0d131b 0%, var(--bg) 40%, #090d12 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

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

.site {
  position: relative;
  z-index: 1;
}

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
  animation: pulse 2s ease-in-out infinite;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding: 4rem 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #04110c;
  box-shadow: 0 10px 30px rgba(45, 212, 168, 0.25);
}

.btn--primary:hover {
  background: #3ee0b6;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(11, 15, 20, 0.85);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

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

.nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.header__actions .lang {
  order: 10;
}

.header__actions .menu-toggle {
  order: 11;
}

.lang {
  position: relative;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  padding: 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.2s var(--ease);
}

.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.lang__menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.lang__menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: 0.25s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 3.5rem 0 2rem;
  overflow: hidden;
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.92;
  background: linear-gradient(135deg, #fff 20%, #c5d4e8 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title {
  margin: 0 0 1rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.hero__meta a {
  color: var(--accent);
  font-weight: 600;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.hero__meta strong {
  color: var(--text-muted);
  font-weight: 600;
}

/* Dashboard mock — full-bleed visual plane */

.dashboard {
  position: relative;
  margin-top: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    linear-gradient(180deg, rgba(21, 28, 39, 0.95), rgba(17, 24, 39, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 340px;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 80% 0%, rgba(45, 212, 168, 0.15), transparent 60%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02) 50%, transparent);
  pointer-events: none;
}

.dashboard__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.dashboard__tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dash-tab {
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 600;
}

.dash-tab.is-active {
  background: var(--accent-dim);
  color: var(--accent);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--live);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.4s ease-in-out infinite;
}

.dashboard__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 280px;
}

.dash-feed {
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.75rem;
  border-radius: 10px;
  transition: background 0.2s;
}

.dash-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.dash-row + .dash-row {
  border-top: 1px solid var(--line);
}

.dash-row__match {
  font-weight: 600;
  font-size: 0.92rem;
}

.dash-row__meta {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.dash-odds {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.95rem;
}

.delta {
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.delta--down {
  color: var(--accent);
}

.delta--up {
  color: var(--danger);
}

.dash-chart {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-chart__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dash-chart__title strong {
  color: var(--text);
  font-size: 1.1rem;
}

.spark {
  flex: 1;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
}

.spark svg {
  width: 100%;
  height: 140px;
  overflow: visible;
}

.spark path.line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.2s var(--ease) 0.4s forwards;
}

.spark path.area {
  fill: url(#sparkFill);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

/* ---------- Free bots ---------- */

.bots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.bot-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(45, 212, 168, 0.08), transparent 50%),
    var(--bg-panel);
  min-height: 190px;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.bot-card:hover {
  border-color: rgba(45, 212, 168, 0.4);
  transform: translateY(-2px);
}

.bot-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.bot-card__sport {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bot-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.bot-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.bots__more {
  margin: 1.5rem 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.bots__more a {
  color: var(--accent);
  font-weight: 600;
}

.asia a {
  color: var(--accent);
  font-weight: 600;
}

.faq__a a {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Explore / internal links ---------- */

.explore__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.explore-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel);
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.explore-card:hover {
  border-color: rgba(45, 212, 168, 0.35);
  background: var(--bg-panel-hover);
  transform: translateY(-2px);
}

.explore-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

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

/* ---------- Channels ---------- */

.channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.channel-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 50%), var(--bg-panel);
  transition: border-color 0.25s, transform 0.25s var(--ease);
  min-height: 170px;
}

.channel-card:hover {
  border-color: rgba(45, 212, 168, 0.35);
  transform: translateY(-2px);
}

.channel-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.channel-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
}

.channel-card__icon svg {
  width: 20px;
  height: 20px;
}

.tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag--free {
  background: var(--accent-dim);
  color: var(--accent);
}

.tag--paid {
  background: rgba(232, 184, 74, 0.12);
  color: var(--warn);
}

.tag--tool {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

.channel-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.channel-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1;
}

.channel-card__link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Products ---------- */

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
}

.product-card--featured {
  border-color: rgba(45, 212, 168, 0.35);
  background:
    linear-gradient(160deg, rgba(45, 212, 168, 0.1), transparent 55%),
    var(--bg-elevated);
}

.product-card__label {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

/* ---------- Pricing table ---------- */

.pricing-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

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

.pricing-table th {
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table tr.is-recommend {
  background: rgba(45, 212, 168, 0.05);
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-price span {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
}

.plan-features {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.plan-features li + li {
  margin-top: 0.35rem;
}

.pricing-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.pricing-mobile .product-card {
  min-height: 0;
}

.pricing-mobile .plan-price {
  margin: 0.25rem 0 0.5rem;
}

.pricing-mobile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  position: relative;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

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

/* ---------- Asia ---------- */

.asia {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(45, 212, 168, 0.06), transparent 40%),
    var(--bg-panel);
}

.asia h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

.asia p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.asia p:last-child {
  margin-bottom: 0;
}

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

.asia-stat {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.asia-stat strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
}

.asia-stat span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq__q::after {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq__item.is-open .faq__q::after {
  transform: rotate(-135deg);
}

.faq__a {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq__item.is-open .faq__a {
  display: block;
}

/* ---------- Footer ---------- */

.footer {
  margin-top: 2rem;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  margin: 0.85rem 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 28ch;
}

.footer__rating {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-block;
}

.footer__rating strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer__rating span,
.footer__rating a {
  display: block;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.footer__rating a {
  margin-top: 0.35rem;
  color: var(--accent);
}

.footer h4 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.85rem;
}

.pays {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.pays img {
  height: 22px;
  opacity: 0.7;
}

/* ---------- Reveal motion ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .bots__grid,
  .channels__grid,
  .products__grid,
  .explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .dash-feed {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .pricing-table {
    display: none;
  }

  .pricing-mobile {
    display: flex;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header__cta-tg {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(11, 15, 20, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

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

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .section {
    padding: 3.5rem 0;
  }

  .bots__grid,
  .channels__grid,
  .products__grid,
  .explore__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__brand {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .header__cta-neiro {
    display: none;
  }

  .asia {
    padding: 1.5rem;
  }

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

/* ---------- Internal pages ---------- */

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero .eyebrow {
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.page-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article {
  padding: 1rem 0 4rem;
}

.article__body {
  max-width: 760px;
}

.article__body > p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.article__body a {
  color: var(--accent);
  font-weight: 600;
}

.article__body h2 {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
}

.article__body ol,
.article__body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.article__body ol {
  list-style: decimal;
}

.article__body ul {
  list-style: disc;
}

.article__body li {
  margin-bottom: 0.65rem;
}

.article__body li::marker {
  color: var(--accent);
}

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

.feature-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel);
}

.feature-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.related__list a {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.related__list a:hover {
  border-color: rgba(45, 212, 168, 0.4);
  color: var(--accent);
}

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

