:root {
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.82);
    --muted: #f8f9fb;
    --border: rgba(229, 231, 235, 0.8);
    --text: #0f172a;
    --text-secondary: #64748b;
    --primary: #0052ff;
    --primary-hover: #003ecc;
    --primary-light: rgba(0, 82, 255, 0.08);
    --primary-glow: rgba(0, 82, 255, 0.25);
    --yes: #00c853;
    --no: #ff3d57;
    --warning: #ff9f1c;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 8px 32px rgba(0, 82, 255, 0.18);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* Background effects */
.noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}

.orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.22), transparent 70%);
    top: -220px;
    right: -180px;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb--2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.16), transparent 70%);
    top: 35%;
    left: -120px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.14), transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: orbFloat 18s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.08); }
    66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.35s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.04em;
}

.logo__pulse {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.15;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.15; }
    50% { transform: translateY(-50%) scale(1.6); opacity: 0; }
}

.logo__icon {
    position: relative;
    font-size: 1.7rem;
    z-index: 1;
}

.logo__text {
    background: linear-gradient(135deg, var(--text) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav__link {
    position: relative;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.25s ease;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease, left 0.25s ease;
    border-radius: 2px;
}

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

.nav__link:hover::after {
    width: 100%;
    left: 0;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 42px;
    height: 42px;
    gap: 6px;
    background: var(--muted);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 82, 255, 0.32);
}

.btn--primary:hover {
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.42);
}

.btn--secondary {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn--secondary:hover {
    background: var(--muted);
    border-color: #cbd5e1;
}

.btn--glass {
    background: rgba(255, 255, 255, 0.65);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.btn--white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn--outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.btn--sm {
    padding: 0.6rem 1.15rem;
    font-size: 0.85rem;
}

.btn--xl {
    padding: 1.05rem 2rem;
    font-size: 1.05rem;
}

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

.btn__arrow {
    transition: transform 0.25s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* Hero */
.hero {
    position: relative;
    padding: 10rem 0 7rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    max-width: 620px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    color: #00a344;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yes);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5);
    animation: livePulse 1.8s infinite;
}

.live-dot--red {
    background: var(--no);
    box-shadow: 0 0 0 0 rgba(255, 61, 87, 0.5);
    animation: livePulseRed 1.8s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

@keyframes livePulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 61, 87, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(255, 61, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 61, 87, 0); }
}

.hero__title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.02;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.045em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.hero__trust {
    padding-top: 0.5rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-badge strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.trust-badge span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero visual - phone mockup */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.phone-mockup {
    position: relative;
    width: 320px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transform: perspective(1000px) rotateY(-12deg) rotateX(6deg);
    animation: phoneFloat 7s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-12deg) rotateX(6deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-15px); }
}

.phone__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #0f172a;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.phone__screen {
    background: #f1f5f9;
    border-radius: 34px;
    padding: 45px 14px 20px;
    min-height: 480px;
    overflow: hidden;
}

.tg-header {
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
}

.tg-header__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
}

.tg-header__status {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.tg-message {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tg-message--secondary {
    opacity: 0.75;
    transform: scale(0.96);
}

.tg-message__badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 900;
    color: var(--yes);
    background: rgba(0, 200, 83, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

.tg-message__badge--sell {
    color: var(--no);
    background: rgba(255, 61, 87, 0.1);
}

.tg-message__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.25rem 0;
}

.tg-message__row span {
    color: var(--text-secondary);
}

.tg-message__row strong {
    color: var(--text);
    font-weight: 700;
}

.tg-message__time {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: right;
}

.text-yes { color: var(--yes); }
.text-no { color: var(--no); }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card--1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 18%;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-card__icon {
    font-size: 1.4rem;
}

.floating-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text);
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Ticker */
.ticker-section {
    background: var(--text);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-section::before,
.ticker-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--text), transparent);
}

.ticker-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--text), transparent);
}

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

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

.ticker__content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.ticker__item .dot {
    width: 8px;
    height: 8px;
}

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

/* Sections */
section {
    padding: 6rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.section__title {
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.section__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Market cards */
.markets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.market-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(12px);
}

.market-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 82, 255, 0.25);
}

.market-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--muted);
}

.market-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-card:hover .market-card__image img {
    transform: scale(1.1);
}

.market-card__alert-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.92);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25);
}

.market-card__alert-tag--sell {
    background: rgba(255, 61, 87, 0.92);
    box-shadow: 0 4px 12px rgba(255, 61, 87, 0.25);
}

.market-card__content {
    padding: 1.35rem;
}

.market-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.tag {
    font-size: 0.68rem;
    font-weight: 900;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag--politics {
    background: #ede9fe;
    color: #7c3aed;
}

.tag--crypto {
    background: #dbeafe;
    color: #2563eb;
}

.market-card__time {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.market-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.1rem;
    min-height: 2.8rem;
    line-height: 1.35;
}

.market-card__bar {
    height: 9px;
    background: rgba(255, 61, 87, 0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    position: relative;
}

.market-card__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s infinite;
}

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

.market-card__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yes), #00e676);
    border-radius: 999px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-card__fill--down {
    background: linear-gradient(90deg, var(--no), #ff6b7d);
}

.market-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.market-card__outcome {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    font-size: 0.95rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot--yes { background: var(--yes); }
.dot--no { background: var(--no); }

.market-card__price {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text);
}

.market-card__alert {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, #e6f9f1 0%, #d1fae5 100%);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    border: 1px solid rgba(0, 200, 83, 0.12);
}

.market-card__alert--sell {
    background: linear-gradient(135deg, #fff0f2 0%, #ffe4e6 100%);
    border-color: rgba(255, 61, 87, 0.12);
}

.market-card__alert-icon {
    font-size: 1.1rem;
}

.market-card__alert strong {
    font-weight: 900;
}

/* How it works */
.how {
    background: var(--muted);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--yes));
}

.step__number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--border);
    letter-spacing: 0.05em;
}

.step__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 200, 83, 0.08) 100%);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 82, 255, 0.1);
}

.step__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.55rem;
}

.step__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Features */
.features {
    background: var(--bg);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 82, 255, 0.2);
}

.feature__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
    background: var(--primary-light);
    border-radius: 14px;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Comparison */
.comparison {
    background: linear-gradient(180deg, var(--bg) 0%, var(--muted) 100%);
}

.comparison__table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    backdrop-filter: blur(12px);
}

.comparison__table th,
.comparison__table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison__table th {
    font-weight: 800;
    color: var(--text);
    background: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison__table td:first-child {
    font-weight: 600;
    color: var(--text);
}

.comparison__table td:not(:first-child) {
    text-align: center;
    width: 140px;
}

.comparison__vip {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 82, 255, 0.04) 100%);
    color: var(--primary);
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.85rem;
}

.check--yes {
    background: rgba(0, 200, 83, 0.12);
    color: var(--yes);
}

.check--no {
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-secondary);
    font-weight: 400;
}

/* Pricing */
.pricing {
    background: linear-gradient(180deg, var(--muted) 0%, var(--bg) 100%);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
    border-color: rgba(0, 82, 255, 0.35);
    background: linear-gradient(180deg, var(--surface) 0%, rgba(0, 82, 255, 0.03) 100%);
    box-shadow: var(--shadow-glow);
}

.pricing-card__ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.25);
}

.pricing-card__name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.pricing-card__price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

.pricing-card__price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* FAQ */
.faq {
    background: var(--muted);
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(12px);
}

.faq__item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(0, 82, 255, 0.15);
}

.faq__item.active {
    border-color: rgba(0, 82, 255, 0.25);
}

.faq__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 800;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    text-align: left;
}

.faq__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* CTA */
.cta {
    padding: 3rem 0 6rem;
}

.cta__inner {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 50%, #3730a3 100%);
    border-radius: var(--radius-lg);
    padding: 4.5rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 24px 60px rgba(0, 82, 255, 0.28);
    overflow: hidden;
}

.cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.cta__orb--1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    left: -80px;
}

.cta__orb--2 {
    width: 250px;
    height: 250px;
    background: #60a5fa;
    bottom: -80px;
    right: -60px;
}

.cta__title {
    position: relative;
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.cta__subtitle {
    position: relative;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.25rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: var(--muted);
    padding-top: 4rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
}

.footer__brand {
    max-width: 320px;
}

.footer__brand p {
    margin-top: 1.1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer__columns {
    display: flex;
    gap: 4.5rem;
    flex-wrap: wrap;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer__column h4 {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.footer__column a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer__column a:hover {
    color: var(--primary);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 1.75rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Legal pages */
.legal {
    padding: 8rem 0 5rem;
    background: var(--bg);
    min-height: 60vh;
}

.legal__inner {
    max-width: 760px;
    margin: 0 auto;
}

.legal__title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.legal__updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal__content h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal__content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal__content ul {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    list-style-type: disc;
}

.legal__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal__content a {
    color: var(--primary);
    font-weight: 700;
}

.legal__content a:hover {
    text-decoration: underline;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        display: flex;
        justify-content: center;
    }

    .hero__visual {
        order: -1;
        min-height: auto;
    }

    .phone-mockup {
        transform: none;
        animation: none;
        max-width: 300px;
        width: 100%;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
    }

    .nav {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 0;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav__link {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.1rem;
    }

    .nav__link:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header__actions .btn {
        display: none;
    }

    .hero {
        padding: 8rem 0 5rem;
        min-height: auto;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .footer__inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer__columns {
        gap: 2.5rem;
        width: 100%;
        justify-content: space-between;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 4rem;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    section {
        padding: 4rem 0;
    }

    .pricing-card__price {
        font-size: 2.75rem;
    }

    .legal__title {
        font-size: 2rem;
    }

    .comparison__table th,
    .comparison__table td {
        padding: 1rem;
        font-size: 0.85rem;
    }
}
