
.page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.page {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}
.page {
    font-family: var(--font-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #00050D;
}
.page h1, .page h2, .page h3, .page h4, .page h5, .page h6 {
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.page a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.page .text-blue {
    color: #1e50ff;
}
.page .text-center {
    text-align: center;
}
.page .section-header {
    margin-bottom: 48px;
}
.page .section-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #3b82f6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.page .section-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.page {
    
    --bg-dark: #02040a;
    --bg-darker: #010206;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    
    
    --color-blue: #1e50ff;
    --color-blue-glow: rgba(30, 80, 255, 0.25);
    
    --color-green: #10b981;
    --color-green-glow: rgba(16, 185, 129, 0.25);
    
    --color-purple: #8b5cf6;
    --color-purple-glow: rgba(139, 92, 246, 0.25);
    
    --color-yellow: #f59e0b;
    --color-yellow-glow: rgba(245, 158, 11, 0.25);

    --color-red: #ef4444;
    --color-red-glow: rgba(239, 68, 68, 0.4);

    
    --font-primary: var(--font-inter), 'Inter', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}
.page .btn-primary {
    background: var(--color-blue);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(30, 80, 255, 0.3);
}
.page .btn-primary:hover {
    background: #3b82f6;
    box-shadow: 0 6px 20px rgba(30, 80, 255, 0.5);
    transform: translateY(-1px);
}
.page .btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.page .header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.page .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page .logo {
    display: flex;
    align-items: center;
    color: var(--text-white);
    opacity: 0.9;
    transition: var(--transition-smooth);
}
.page .logo:hover {
    opacity: 1;
    transform: scale(1.05);
}
.page .section-panel {
    background: #020B17;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
.page .section-panel {
        padding: 30px 20px;
    }
}
.page .footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--card-border);
    padding: 50px 0 30px 0;
    position: relative;
}
.page .footer-container {
    display: grid;
    grid-template-columns: 1.1fr 1.8fr 1.1fr;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.page .logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.page .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.page .brand-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.page .brand-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}
.page .footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
}
.page .footer-links a {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
}
.page .footer-links a:hover {
    color: var(--text-white);
}
.page .footer-right {
    display: flex;
    justify-content: flex-end;
}
.page .social-links {
    display: flex;
    gap: 12px;
}
.page .social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    color: var(--text-gray);
    transition: var(--transition-smooth);
}
.page .social-item svg {
    width: 16px;
    height: 16px;
}
.page .social-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: translateY(-2px);
}
.page .footer-bottom {
    margin-top: 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
@media (max-width: 1024px) {
.page .footer-container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
.page .footer-right, .page .footer-left {
        justify-content: center;
    }
}
@media (max-width: 768px) {
.page .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
.page .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.45;
}
.page .footer-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(72px, 96px));
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}
.page .footer-links a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
}
@media (max-width: 1024px) {
.page .footer-links {
        grid-template-columns: repeat(3, minmax(88px, 1fr));
        gap: 16px 20px;
    }
}
@media (max-width: 768px) {
.page .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
.page .scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.page .features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.page .features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.page .features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
.page .features-grid .feature-card:nth-child(4) { transition-delay: 0.24s; }
.page .steps-container .step-card:nth-child(2) { transition-delay: 0.08s; }
.page .steps-container .step-card:nth-child(3) { transition-delay: 0.16s; }
.page .steps-container .step-card:nth-child(4) { transition-delay: 0.24s; }
.page .cta-section {
    padding: 15px 0;
    position: relative;
}
.page .cta-banner {
    background-color: #000106;
    background-image: url('../images/visuals/cta-background-2.webp');
    background-size: 100%;
    background-position: right center;
    background-repeat: no-repeat;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.page .cta-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.9);
    filter: blur(60px);
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}
.page .cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    z-index: 2;
}
.page .cta-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
}
.page .cta-content p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    max-width: 480px;
}
@media (max-width: 768px) {
.page .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
.page .cta-content {
        align-items: center;
    }
}
.page .features-section {
    padding: 15px 0;
    position: relative;
}
.page .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.page .feature-card {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: var(--transition-smooth);
}
.page .feature-icon-wrapper {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page .feature-icon-wrapper svg {
    width: 4.5rem;
    height: 4.5rem;
}
.page .feature-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
}
.page .feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}
.page .card-blue {
    background: radial-gradient(circle at center 25%, rgba(30, 80, 255, 0.15) 0%, rgba(255,255,255,0.01) 70%);
}
.page .card-blue:hover {
    border-color: rgba(30, 80, 255, 0.4);
    box-shadow: 0 10px 25px rgba(30, 80, 255, 0.15);
    transform: translateY(-4px);
}
.page .icon-blue { color: #3b82f6; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 12px rgba(59, 130, 246, 0.4)); }
.page .card-green {
    background: radial-gradient(circle at center 25%, rgba(16, 185, 129, 0.15) 0%, rgba(255,255,255,0.01) 70%);
}
.page .card-green:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}
.page .icon-green { color: #10b981; filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8)) drop-shadow(0 0 12px rgba(16, 185, 129, 0.4)); }
.page .card-purple {
    background: radial-gradient(circle at center 25%, rgba(139, 92, 246, 0.15) 0%, rgba(255,255,255,0.01) 70%);
}
.page .card-purple:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
}
.page .icon-purple { color: #8b5cf6; filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 12px rgba(139, 92, 246, 0.4)); }
.page .card-yellow {
    background: radial-gradient(circle at center 25%, rgba(245, 158, 11, 0.15) 0%, rgba(255,255,255,0.01) 70%);
}
.page .card-yellow:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
    transform: translateY(-4px);
}
.page .icon-yellow { color: #f59e0b; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 12px rgba(245, 158, 11, 0.4)); }
@media (max-width: 1024px) {
.page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
.page .features-grid {
        grid-template-columns: 1fr;
    }
}
.page .hero-section {
    padding: 140px 0 15px 0;
    position: relative;
    background-image: url('../images/visuals/bghero2.webp');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.page .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: contrast(1.1) brightness(0.85);
    -webkit-backdrop-filter: contrast(1.1) brightness(0.85);
    z-index: 1;
}
.page .hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
.page .hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}
.page .hero-title {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.page .hero-title .text-blue {
    background: linear-gradient(to right, #0149D7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}
.page .badge-live {
    display: inline-flex;
    align-items: center;
    background: var(--color-red);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 2px 14px;
    border-radius: 99px;
    vertical-align: middle;
    margin-left: 6px;
    box-shadow: 0 0 12px var(--color-red-glow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
    }
}
.page .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    font-weight: 400;
}
.page .hero-actions {
    margin-top: 10px;
}
.page .accept-section {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.page .accept-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}
.page .coin-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.page .coin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.page .coin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
}
.page .coin-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.page .coin-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.page .coin-item:hover {
    transform: translateY(-2px);
}
.page .coin-item:hover .coin-name {
    color: var(--text-gray);
}
@media (max-width: 1024px) {
.page .hero-title {
        font-size: 2.75rem;
    }
}
@media (max-width: 768px) {
.page .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
.page .hero-content {
        align-items: center;
        max-width: 100%;
    }
.page .coin-list {
        justify-content: center;
    }
}
@media (max-width: 480px) {
.page .hero-title {
        font-size: 2rem;
    }
}
.page .how-it-works-section {
    padding: 15px 0;
    position: relative;
}
.page .steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 60px;
}
.page .steps-line {
    display: block;
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}
.page .steps-line .line-dot {
    position: absolute;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background: #4deeea;
    border-radius: 50%;
    box-shadow: 0 0 10px #4deeea, 0 0 20px #4deeea;
    opacity: 0;
    animation: flowDot 3s linear infinite;
}
.page .steps-line .line-dot:nth-child(1) { animation-delay: 0s; }
.page .steps-line .line-dot:nth-child(2) { animation-delay: 1s; }
.page .steps-line .line-dot:nth-child(3) { animation-delay: 2s; }
@keyframes flowDot {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
.page .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.page .step-icon-outer {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    background: #020B17; 
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}
.page .step-icon-outer.outer-blue { border: 1px solid rgba(59, 130, 246, 0.4); box-shadow: 0 0 20px rgba(59, 130, 246, 0.1) inset; }
.page .step-icon-outer.outer-green { border: 1px solid rgba(16, 185, 129, 0.4); box-shadow: 0 0 20px rgba(16, 185, 129, 0.1) inset; }
.page .step-icon-outer.outer-purple { border: 1px solid rgba(139, 92, 246, 0.4); box-shadow: 0 0 20px rgba(139, 92, 246, 0.1) inset; }
.page .step-icon-outer.outer-yellow { border: 1px solid rgba(245, 158, 11, 0.4); box-shadow: 0 0 20px rgba(245, 158, 11, 0.1) inset; }
.page .step-card:hover .step-icon-outer {
    transform: scale(1.05);
}
.page .step-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page .step-icon-inner svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 1.5;
}
.page .inner-blue { color: #3b82f6; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 15px rgba(59, 130, 246, 0.4)); }
.page .inner-green { color: #10b981; filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8)) drop-shadow(0 0 15px rgba(16, 185, 129, 0.4)); }
.page .inner-purple { color: #8b5cf6; filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 15px rgba(139, 92, 246, 0.4)); }
.page .inner-yellow { color: #f59e0b; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 15px rgba(245, 158, 11, 0.4)); }
.page .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.page .step-content h3 {
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.page .step-number {
    font-weight: 600;
    font-size: 1.3rem;
}
.page .text-blue { color: #3b82f6; }
.page .text-green { color: #10b981; }
.page .text-purple { color: #8b5cf6; }
.page .text-yellow { color: #f59e0b; }
.page .step-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
.page .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
.page .steps-line {
        display: none; 
    }
}
@media (max-width: 480px) {
.page .steps-container {
        grid-template-columns: 1fr;
    }
}
.page .trust-section {
    padding: 15px 0;
    position: relative;
}
.page .trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.page .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 16px;
    position: relative;
}
.page .trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.05);
}
.page .trust-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-bottom: 16px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.page .trust-icon svg, .page .trust-icon i {
    width: 3.2rem;
    height: 3.2rem;
    stroke-width: 1.5;
}
.page .trust-icon.text-blue { color: #3b82f6; background-color: rgba(59, 130, 246, 0.06); }
.page .trust-icon.text-green { color: #10b981; background-color: rgba(16, 185, 129, 0.06); }
.page .trust-icon.text-purple { color: #8b5cf6; background-color: rgba(139, 92, 246, 0.06); }
.page .trust-icon.text-yellow { color: #f59e0b; background-color: rgba(245, 158, 11, 0.06); }
.page .trust-icon.text-blue svg, .page .trust-icon.text-blue i { filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 15px rgba(59, 130, 246, 0.4)); }
.page .trust-icon.text-green svg, .page .trust-icon.text-green i { filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8)) drop-shadow(0 0 15px rgba(16, 185, 129, 0.4)); }
.page .trust-icon.text-purple svg, .page .trust-icon.text-purple i { filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 15px rgba(139, 92, 246, 0.4)); }
.page .trust-icon.text-yellow svg, .page .trust-icon.text-yellow i { filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 15px rgba(245, 158, 11, 0.4)); }
.page .trust-item h3 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.page .trust-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
}
@media (max-width: 1024px) {
.page .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
.page .trust-item:not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 480px) {
.page .trust-grid {
        grid-template-columns: 1fr;
    }
}


.page{--font-inter:'Inter';}
