/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0b;
    --bg-card: #0f0f11;
    --bg-card-hover: #141418;
    --gold: #c9a84c;
    --gold-dim: #8a7435;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --red: #e74c3c;
    --green: #2ecc71;
    --orange: #f39c12;
    --text-primary: #e8e6e1;
    --text-secondary: #8a8880;
    --text-muted: #4a4840;
    --border: rgba(201, 168, 76, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    color: var(--bg);
    background: var(--gold);
}

.btn--primary:hover {
    background: #d4b35a;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.2);
}

.btn--ghost {
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-subtle);
}

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

.btn--outline {
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold-dim);
}

.btn--outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translate(2px, -2px);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s ease;
}

.nav__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo-img {
    height: 28px;
    width: auto;
}

.nav__brand-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.lang-btn.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.lang-btn:hover:not(.active) {
    color: var(--text-secondary);
}

.lang-sep {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.4;
}

.flag {
    display: inline-block;
    width: 16px;
    height: 12px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    forced-color-adjust: none;
}

.flag-ru {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='10' fill='%23ffffff'/%3E%3Crect y='10' width='60' height='10' fill='%230039a6'/%3E%3Crect y='20' width='60' height='10' fill='%23d52b1e'/%3E%3C/svg%3E") center/cover no-repeat;
}

.flag-en {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Crect width='60' height='30'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23C8102E' stroke-width='4' clip-path='url(%23a)'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 48px 100px;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero__content,
.hero__visual {
    min-width: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero steps (1-2-3 onboarding) */
.hero__steps {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.hero__step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Telegram icon */
.tg-icon {
    margin-right: 4px;
    vertical-align: -2px;
    opacity: 0.6;
    flex-shrink: 0;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== SIGNAL MOCK CARD (hero) ===== */
.hero__signal-card {
    position: relative;
}

.signal-mock {
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0;
    width: 340px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
}

.signal-mock__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-mock__badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
}

.signal-mock__badge--short {
    color: #fff;
    background: var(--red);
}

.signal-mock__pair {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

.signal-mock__score {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
}

.signal-mock__body {
    padding: 16px 20px 20px;
}

.signal-mock__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.signal-mock__row:last-of-type {
    border-bottom: none;
}

.signal-mock__label {
    font-size: 13px;
    color: var(--text-muted);
}

.signal-mock__value {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.signal-mock__value--warn {
    color: var(--orange);
}

.signal-mock__value--good {
    color: var(--green);
}

.signal-mock__factors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-mock__factor {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold-dim);
    background: rgba(201, 168, 76, 0.08);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

/* ===== NOT A SIGNAL BOT ===== */
.notbot {
    padding: 48px 48px 60px;
}

.notbot__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.notbot__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 28px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.notbot__icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notbot__item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.notbot__item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.notbot__item--no {
    border-color: rgba(231, 76, 60, 0.15);
}

.notbot__item--yes {
    border-color: rgba(46, 204, 113, 0.15);
}

/* ===== HERO GRID LINES ===== */
.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* ===== DIVIDER ===== */
.divider {
    padding: 0 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.divider__line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--gold-dim), var(--border), transparent);
    opacity: 0.5;
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 48px;
}

/* ===== HOW IT WORKS (stages) ===== */
.howitworks {
    padding: 100px 48px;
}

.howitworks__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.stages__card {
    padding: 36px 28px;
    background: var(--bg-card);
    position: relative;
    transition: background 0.4s ease;
}

.stages__card:hover {
    background: var(--bg-card-hover);
}

.stages__num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.stages__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.stages__title--warn {
    color: var(--orange);
}

.stages__title--danger {
    color: var(--red);
}

.stages__text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stages__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    transition: width 0.6s ease;
}

.stages__bar--1 { width: 25%; background: rgba(201, 168, 76, 0.3); }
.stages__bar--2 { width: 50%; background: rgba(201, 168, 76, 0.5); }
.stages__bar--3 { width: 75%; background: var(--orange); }
.stages__bar--4 { width: 100%; background: var(--red); }

/* ===== FEATURES ===== */
.features {
    padding: 100px 48px;
}

.features__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.feature-card {
    padding: 40px 32px;
    background: var(--bg-card);
    position: relative;
    transition: background 0.4s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
}

.feature-card__icon {
    margin-bottom: 20px;
    opacity: 0.8;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card__text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-card__line {
    width: 100%;
}

.exchanges {
    padding: 88px 48px;
}

.exchanges__inner {
    max-width: 920px;
    margin: 0 auto;
}

.exchanges__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.exchange-card {
    display: block;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.exchange-card:hover {
    border-color: var(--gold-dim);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.exchange-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 10px 14px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--bg);
    margin-bottom: 18px;
}

.exchange-card__logo--binance {
    background: #f3ba2f;
}

.exchange-card__logo--bybit {
    background: #f7a600;
}

.exchange-card__logo--mexc {
    background: #26a17b;
}

.exchange-card__logo--bingx {
    background: #1677ff;
}

.exchange-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.exchange-card__text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.exchange-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
}

/* ===== SIGNAL PROFILES ===== */
.profiles {
    margin-top: 64px;
    text-align: center;
}

.profiles__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

.profiles__card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: left;
    transition: border-color 0.3s;
}

.profiles__card--active {
    border-color: var(--gold-dim);
    background: rgba(201, 168, 76, 0.04);
}

.profiles__card:hover {
    border-color: var(--gold-dim);
}

.profiles__icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.profiles__name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.exchange-link {
    color: inherit;
    transition: color 0.3s ease;
}

.exchange-link:hover {
    color: var(--gold);
}

.exchange-link:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.profiles__card li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.profiles__card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===== SIGNAL EXPLAINER ===== */
.signal-explainer {
    padding: 100px 48px;
}

.signal-explainer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.explainer-step {
    position: relative;
}

.explainer-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-dim);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.explainer-step h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.explainer-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== STATS ===== */
.stats {
    padding: 100px 48px;
}

.stats__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.stats__card {
    padding: 40px 24px;
    background: var(--bg-card);
    text-align: center;
    transition: background 0.4s ease;
}

.stats__card:hover {
    background: var(--bg-card-hover);
}

.stats__number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stats__unit {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 2px;
}

.stats__label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
    padding: 100px 48px;
}

.comparison__inner {
    max-width: 900px;
    margin: 0 auto;
}

.comparison__table-wrap {
    overflow-x: auto;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison__table thead th {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 16px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-subtle);
}

.comparison__table thead th:first-child {
    text-align: left;
}

.comparison__th--highlight {
    color: var(--gold) !important;
}

.comparison__table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-secondary);
}

.comparison__table tbody td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 400;
}

.comparison__table tbody td:nth-child(3):not(.comparison__yes):not(.comparison__no) {
    color: var(--gold);
    font-weight: 500;
}

.comparison__yes {
    color: var(--green) !important;
    font-weight: 500;
}

.comparison__no {
    color: var(--text-muted) !important;
}

/* ===== AUDIENCE ===== */
.audience {
    padding: 100px 48px;
}

.audience__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.audience__card {
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.audience__card:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.audience__card-icon {
    margin-bottom: 20px;
    opacity: 0.8;
}

.audience__pain {
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 16px;
    opacity: 0.85;
}

.audience__card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.audience__card ul {
    list-style: none;
    padding: 0;
}

.audience__card li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 6px 0 6px 20px;
    position: relative;
}

.audience__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-dim);
}

.product-family__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-family__card--accent {
    border-color: var(--gold-dim);
    background: rgba(201, 168, 76, 0.04);
}

.product-family__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: rgba(201, 168, 76, 0.06);
    margin-bottom: 18px;
}

.product-family__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-family__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.product-family__btn {
    justify-content: center;
}

.product-family__btn.btn--outline {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.38);
}

.product-family__btn.btn--outline:hover {
    background: rgba(201, 168, 76, 0.14);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.12);
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 48px;
}

.pricing__inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.pricing__card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing__card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.pricing__card--popular {
    border-color: var(--gold-dim);
    background: rgba(201, 168, 76, 0.03);
}

.pricing__card--popular:hover {
    border-color: var(--gold);
}

.pricing__popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing__duration {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.pricing__price {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing__per {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing__save {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
}

.pricing__features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing__features li:last-child {
    border-bottom: none;
}

.pricing__btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing__note {
    text-align: center;
    font-size: 15px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    padding: 14px 24px;
    margin-top: 32px;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
}

.cta__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.cta__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta__btn {
    font-size: 16px;
    padding: 16px 40px;
}

.cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px 48px;
    border-top: 1px solid var(--border-subtle);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer__logo {
    height: 22px;
    opacity: 0.5;
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__link {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--text-secondary);
}

.footer__copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats__grid .stats__card:nth-child(4),
    .stats__grid .stats__card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__badge {
        justify-content: center;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__steps {
        justify-content: center;
    }

    .signal-mock {
        margin: 0 auto;
    }

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

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

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

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

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

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

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

    .nav__link {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 0 20px;
    }

    .hero, .howitworks, .features, .exchanges, .signal-explainer, .stats, .comparison, .audience, .pricing, .cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .notbot {
        padding-left: 20px;
        padding-right: 20px;
    }

    .divider {
        padding: 0 20px;
    }

    .footer {
        padding: 24px 20px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__steps {
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .hero__step {
        flex: 1 1 160px;
        justify-content: center;
        min-width: 0;
    }

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

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

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

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

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

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

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .signal-mock {
        width: 100%;
        max-width: 340px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .exchange-card {
        padding: 24px 20px;
    }

    .exchange-card__logo {
        min-width: 100px;
    }

    .product-family__actions .btn {
        width: 100%;
    }

    .stages__card {
        padding: 28px 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__links {
        gap: 16px;
    }

    .comparison__table {
        font-size: 13px;
    }

    .comparison__table thead th,
    .comparison__table tbody td {
        padding: 10px 12px;
    }
}
