/* Awardollar — custom AI trading homepage */
body:has(.aw-home) {
    background: #070b14 !important;
}

body:has(.aw-home) .body-overlay-bg {
    opacity: 0.15;
}

.aw-home {
    --aw-bg: #070b14;
    --aw-surface: #0f172a;
    --aw-card: rgba(15, 23, 42, 0.72);
    --aw-border: rgba(148, 163, 184, 0.14);
    --aw-text: #f1f5f9;
    --aw-muted: #94a3b8;
    --aw-primary: #8b5cf6;
    --aw-accent: #22d3ee;
    --aw-success: #34d399;
    --aw-glow: rgba(139, 92, 246, 0.35);
    color: var(--aw-text);
    overflow-x: hidden;
    max-width: 100%;
}

.aw-home section {
    position: relative;
    z-index: 2;
}

/* Hero */
.aw-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139, 92, 246, 0.22), transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(34, 211, 238, 0.12), transparent 50%),
        var(--aw-bg);
}

.aw-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    animation: aw-grid-drift 24s linear infinite;
    pointer-events: none;
}

@keyframes aw-grid-drift {
    0% { transform: translateY(0); }
    100% { transform: translateY(48px); }
}

.aw-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: aw-orb-float 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.aw-hero-orb--1 {
    width: 420px;
    height: 420px;
    background: var(--aw-primary);
    top: 10%;
    right: -5%;
}

.aw-hero-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--aw-accent);
    bottom: 20%;
    left: -8%;
    animation-delay: -3s;
}

@keyframes aw-orb-float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-20px, 30px) scale(1.08); }
}

.aw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.aw-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aw-success);
    box-shadow: 0 0 12px var(--aw-success);
    animation: aw-pulse 2s ease-in-out infinite;
}

@keyframes aw-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.aw-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--aw-text);
}

.aw-hero h1 .aw-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-hero-lead {
    font-size: 1.125rem;
    color: var(--aw-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.aw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.aw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.aw-btn-primary {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px var(--aw-glow);
}

.aw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--aw-glow);
    color: #fff;
}

.aw-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--aw-border);
    color: var(--aw-text);
}

.aw-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--aw-text);
    transform: translateY(-2px);
}

.aw-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.aw-hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--aw-text);
}

.aw-hero-stat span {
    font-size: 13px;
    color: var(--aw-muted);
}

/* Hero visual card */
.aw-hero-visual {
    position: relative;
}

.aw-terminal {
    background: var(--aw-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--aw-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    animation: aw-float-card 6s ease-in-out infinite;
}

@keyframes aw-float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.aw-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--aw-border);
}

.aw-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.aw-terminal-dot:nth-child(1) { background: #ef4444; }
.aw-terminal-dot:nth-child(2) { background: #f59e0b; }
.aw-terminal-dot:nth-child(3) { background: #22c55e; }

.aw-signal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
}

.aw-signal-row:last-child { border-bottom: none; }

.aw-signal-buy {
    color: var(--aw-success);
    font-weight: 600;
}

.aw-signal-sell {
    color: #f87171;
    font-weight: 600;
}

.aw-mini-chart {
    height: 80px;
    margin-top: 12px;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.15) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.aw-mini-chart::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aw-accent), transparent);
    animation: aw-scan 3s linear infinite;
}

@keyframes aw-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Ticker strip */
.aw-ticker-wrap {
    background: #0a0f1a;
    border-top: 1px solid var(--aw-border);
    border-bottom: 1px solid var(--aw-border);
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.aw-ticker-wrap .tradingview-widget-container {
    height: 46px !important;
    min-height: 46px;
    width: 100% !important;
    max-width: 100%;
}

.aw-ticker-wrap iframe {
    max-width: 100% !important;
}

/* Chart section */
.aw-charts {
    padding: 100px 0;
    background: var(--aw-bg);
}

.aw-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aw-accent);
    margin-bottom: 12px;
}

.aw-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 16px;
}

.aw-section-desc {
    color: var(--aw-muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.aw-chart-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.aw-chart-tab {
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid var(--aw-border);
    background: transparent;
    color: var(--aw-muted);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.aw-chart-tab.active,
.aw-chart-tab:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--aw-primary);
    color: var(--aw-text);
}

.aw-chart-panel {
    background: var(--aw-surface);
    border: 1px solid var(--aw-border);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: clamp(320px, 55vh, 520px);
    height: clamp(320px, 55vh, 520px);
}

#aw-tradingview-chart {
    width: 100%;
    height: 100%;
    min-height: inherit;
    position: relative;
}

#aw-tradingview-chart .tradingview-widget-container,
#aw-tradingview-chart .tradingview-widget-container__widget {
    width: 100% !important;
    height: 100% !important;
    min-height: inherit;
}

#aw-tradingview-chart iframe {
    width: 100% !important;
    max-width: 100% !important;
}

/* Features */
.aw-features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--aw-bg) 0%, #0c1222 100%);
}

.aw-feature-card {
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.aw-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.aw-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(34, 211, 238, 0.15));
    color: var(--aw-accent);
}

.aw-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--aw-text);
}

.aw-feature-card p {
    color: var(--aw-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* How it works */
.aw-steps {
    padding: 100px 0;
    background: var(--aw-bg);
}

.aw-step {
    text-align: center;
    padding: 0 16px;
}

.aw-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aw-primary), var(--aw-accent));
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px var(--aw-glow);
}

.aw-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.aw-step p {
    color: var(--aw-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* AI pipeline */
.aw-pipeline {
    padding: 80px 0 100px;
}

.aw-pipeline-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.aw-pipeline-node {
    padding: 16px 24px;
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    animation: aw-node-glow 4s ease-in-out infinite;
}

.aw-pipeline-node:nth-child(2) { animation-delay: 0.5s; }
.aw-pipeline-node:nth-child(4) { animation-delay: 1s; }
.aw-pipeline-node:nth-child(6) { animation-delay: 1.5s; }

@keyframes aw-node-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(139, 92, 246, 0); }
    50% { box-shadow: 0 0 24px rgba(139, 92, 246, 0.25); }
}

.aw-pipeline-arrow {
    color: var(--aw-muted);
    font-size: 20px;
}

/* Stats */
.aw-stats {
    padding: 80px 0;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.06));
    border-top: 1px solid var(--aw-border);
    border-bottom: 1px solid var(--aw-border);
}

.aw-stat-box {
    text-align: center;
}

.aw-stat-box .aw-stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #e9d5ff, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-stat-box span {
    color: var(--aw-muted);
    font-size: 14px;
}

/* Security */
.aw-security {
    padding: 100px 0;
}

.aw-security-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--aw-muted);
    font-size: 15px;
}

.aw-security-list i {
    color: var(--aw-success);
    margin-top: 4px;
}

/* CTA */
.aw-cta {
    padding: 100px 0 120px;
}

.aw-cta-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(34, 211, 238, 0.12));
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aw-cta-box::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.08), transparent 30%);
    animation: aw-cta-spin 12s linear infinite;
    pointer-events: none;
}

@keyframes aw-cta-spin {
    to { transform: rotate(360deg); }
}

.aw-cta-box > * {
    position: relative;
    z-index: 1;
}

.aw-cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
}

.aw-cta-box p {
    color: var(--aw-muted);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll reveal */
.aw-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.aw-reveal.aw-visible {
    opacity: 1;
    transform: translateY(0);
}

.aw-reveal-delay-1 { transition-delay: 0.1s; }
.aw-reveal-delay-2 { transition-delay: 0.2s; }
.aw-reveal-delay-3 { transition-delay: 0.3s; }

/* Business model */
.aw-model {
    padding: 100px 0;
    background: #0c1222;
}

.aw-model-card {
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}

.aw-model-card .step-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aw-accent);
    margin-bottom: 10px;
}

.aw-model-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.aw-model-card p {
    color: var(--aw-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* Technology stack */
.aw-tech {
    padding: 100px 0;
    background: var(--aw-bg);
}

.aw-tech-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.5));
    border: 1px solid var(--aw-border);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
}

.aw-tech-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 8px;
}

.aw-tech-card .aw-tech-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--aw-accent);
    background: rgba(34, 211, 238, 0.1);
    border-radius: 6px;
    padding: 4px 8px;
    margin-bottom: 12px;
}

.aw-tech-card p {
    color: var(--aw-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Profit distribution */
.aw-distribute {
    padding: 90px 0;
    background: linear-gradient(180deg, #0c1222 0%, var(--aw-bg) 100%);
}

.aw-distribute-box {
    border: 1px dashed rgba(139, 92, 246, 0.35);
    border-radius: 16px;
    padding: 28px;
    background: rgba(139, 92, 246, 0.06);
}

.aw-distribute-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.aw-distribute-box p,
.aw-distribute-box li {
    color: var(--aw-muted);
    font-size: 14px;
    line-height: 1.65;
}

.aw-distribute-box ul {
    margin: 0;
    padding-left: 18px;
}

/* Compliance */
.aw-compliance {
    padding: 0 0 60px;
}

.aw-compliance-box {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--aw-border);
    border-left: 4px solid var(--aw-accent);
    border-radius: 12px;
    padding: 24px 28px;
}

.aw-compliance-box p {
    color: var(--aw-muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.aw-compliance-box strong {
    color: #e2e8f0;
}

@media (max-width: 991px) {
    .aw-hero {
        padding-top: 100px;
        text-align: center;
    }
    .aw-hero-lead { margin-left: auto; margin-right: auto; }
    .aw-hero-actions { justify-content: center; }
    .aw-hero-stats { justify-content: center; }
    .aw-hero-visual { margin-top: 48px; }

    .aw-charts {
        padding: 60px 0;
    }

    .aw-chart-panel {
        min-height: clamp(280px, 48vh, 420px);
        height: clamp(280px, 48vh, 420px);
        border-radius: 12px;
    }

    .aw-section-desc {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .aw-ticker-wrap .tradingview-widget-container {
        height: 42px !important;
        min-height: 42px;
    }

    .aw-chart-panel {
        min-height: 300px;
        height: 300px;
    }

    .aw-chart-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .aw-charts .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Homepage — shared investment plan cards */
.investment-plan-section .aw-plans-grid--home {
    margin-top: 8px;
}

.investment-plan-section .aw-plans-grid--home > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.investment-plan-section .aw-plan-card {
    height: 100%;
}

/* 5-level referral commission */
.aw-ref-levels {
    padding: 100px 0;
    background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(139, 92, 246, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 60% at 85% 40%, rgba(34, 211, 238, 0.1), transparent 50%),
        #0a0f1a;
    overflow: hidden;
}

.aw-ref-levels__glow {
    position: absolute;
    inset: 10% 5%;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.05));
    filter: blur(40px);
    pointer-events: none;
}

.aw-ref-levels__label {
    color: #a5f3fc;
    border-color: rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
}

.aw-ref-levels__highlights {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aw-ref-levels__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--aw-muted);
    line-height: 1.5;
}

.aw-ref-levels__highlights i {
    width: 22px;
    margin-top: 2px;
    color: #c4b5fd;
    flex-shrink: 0;
}

.aw-ref-levels__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.aw-ref-levels__panel {
    padding: 28px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(167, 139, 250, 0.28);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.aw-ref-levels__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.aw-ref-levels__panel-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c4b5fd;
    margin-bottom: 6px;
}

.aw-ref-levels__panel-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
}

.aw-ref-levels__total {
    text-align: right;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 211, 238, 0.15));
    border: 1px solid rgba(167, 139, 250, 0.4);
    flex-shrink: 0;
}

.aw-ref-levels__total-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 2px;
}

.aw-ref-levels__total strong {
    font-size: 1.1rem;
    color: #f5f3ff;
}

.aw-ref-levels__track {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aw-ref-levels__you {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 10px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: 1px solid rgba(196, 181, 253, 0.5);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
}

.aw-ref-levels__you-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
}

.aw-ref-levels__step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: stretch;
}

.aw-ref-levels__connector {
    position: relative;
    display: block;
    width: 2px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.8), rgba(34, 211, 238, 0.35));
    border-radius: 2px;
    min-height: 100%;
}

.aw-ref-levels__step:first-of-type .aw-ref-levels__connector {
    margin-top: 4px;
}

.aw-ref-level-card {
    margin: 10px 0;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(7, 11, 20, 0.65);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.aw-ref-level-card:hover {
    transform: translateX(6px);
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.aw-ref-level-card--l1 {
    border-color: rgba(167, 139, 250, 0.45);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(7, 11, 20, 0.8));
}

.aw-ref-level-card--l1 .aw-ref-level-card__rate {
    color: #e9d5ff;
    text-shadow: 0 0 24px rgba(167, 139, 250, 0.5);
}

.aw-ref-level-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.aw-ref-level-card__badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

.aw-ref-level-card__rate {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #67e8f9;
}

.aw-ref-level-card__rate small {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.85;
}

.aw-ref-level-card__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
}

.aw-ref-level-card__desc {
    margin: 0;
    font-size: 13px;
    color: var(--aw-muted);
    line-height: 1.5;
}

.aw-ref-level-card__example {
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(148, 163, 184, 0.15);
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    font-style: italic;
}

.aw-ref-levels__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 0;
    padding: 12px 14px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.aw-ref-levels__note i {
    color: #94a3b8;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .aw-ref-levels {
        padding: 72px 0;
    }

    .aw-ref-levels .aw-section-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .aw-ref-levels__highlights {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .aw-ref-levels__actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .aw-ref-levels__panel {
        padding: 20px 16px;
    }

    .aw-ref-levels__panel-head {
        flex-direction: column;
    }

    .aw-ref-levels__total {
        text-align: left;
        width: 100%;
    }

    .aw-ref-level-card__rate {
        font-size: 1.65rem;
    }
}
