@font-face {
    font-family: 'Pacifico';
    src: url('../fonts/Pacifico.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --black: #080810;
    --g900: #111827;
    --g800: #1f2937;
    --g700: #374151;
    --g600: #4b5563;
    --g500: #6b7280;
    --g400: #9ca3af;
    --g300: #d1d5db;
    --g200: #e5e7eb;
    --g100: #f3f4f6;
    --g50: #f9fafb;
    --white: #ffffff;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-2xl: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .10);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .16);

    /* DONATION */
    --om-color: #f97316;
    --om-bg: #fff7ed;
    --om-border: #fed7aa;
    --momo-color: #a855f7;
    --momo-bg: #faf5ff;
    --momo-border: #e9d5ff;
    --card-color: #3b82f6;
    --card-bg: #eff6ff;
    --card-border: #bfdbfe;
    --pp-color: #0070ba;
    --pp-bg: #eff6ff;
    --pp-border: #93c5fd;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--g800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

.font-pacifico {
    font-family: 'Pacifico', cursive;
    letter-spacing: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .2s, box-shadow .2s, transform .2s, border-color .2s, color .2s;
    white-space: nowrap
}

.btn:active {
    transform: translateY(1px)
}

.btn-dark {
    background: var(--g900);
    color: var(--white)
}

.btn-dark:hover {
    background: var(--g700);
    box-shadow: var(--shadow)
}

.btn-outline {
    background: transparent;
    color: var(--g800);
    border: 1.5px solid var(--g300)
}

.btn-outline:hover {
    background: var(--g100);
    border-color: var(--g500)
}

.btn-white {
    background: var(--white);
    color: var(--g900)
}

.btn-white:hover {
    background: var(--g100);
    box-shadow: var(--shadow)
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .15)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .15)
}

.btn-lg {
    padding: 15px 34px;
    font-size: 16px
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px
}

/* SECTION LABEL */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--g100);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: 16px
}

.section-label-dark {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.heading-lg {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--g900);
    letter-spacing: -.02em
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-delay-1 { transition-delay: .1s }
.reveal-delay-2 { transition-delay: .2s }
.reveal-delay-3 { transition-delay: .3s }
.reveal-delay-4 { transition-delay: .4s }

/* HEADER */
#header {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Announce bar */
.announce-bar {
    background: var(--g900);
    padding: 9px 0;
    overflow: hidden;
    position: relative;
    transition: max-height .35s, padding .35s, opacity .35s;
    max-height: 60px;
}

.announce-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.announce-shimmer {
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent);
    animation: ann-shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ann-shimmer {
    0%   { left: -60% }
    100% { left: 130% }
}

.announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.announce-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: rgba(249, 115, 22, .18);
    border: 1px solid rgba(249, 115, 22, .35);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    color: #fb923c;
    letter-spacing: .06em;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

.announce-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

.announce-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
    line-height: 1;
}

.announce-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 1px;
    margin-left: 4px;
    transition: border-color .15s, color .15s;
}

.announce-link:hover {
    border-color: var(--white);
}

.announce-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, .4);
    padding: 4px;
    line-height: 0;
    border-radius: 6px;
    transition: color .15s, background .15s;
}

.announce-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

/* Nav wrapper */
.nav-wrapper {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    position: relative;
    transition: box-shadow .3s;
}

#header.scrolled .nav-wrapper {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .10);
}

.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #f97316, #a855f7);
    transition: width .1s linear;
    pointer-events: none;
    z-index: 2;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    object-fit: contain;
    width: 70px;
}

.logo-footer {
    padding: 5px;
    background: #ffffff;
    border-radius: var(--r-md);
}

.nav-logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 26px;
    color: var(--g900);
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--g600);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--r-md);
    position: relative;
    transition: color .2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 12px;
    right: 12px;
    height: 1.5px;
    background: var(--g900);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--g900);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    font-weight: 600;
}

.nav-link-blog { gap: 7px }

.nav-blog-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 7px rgba(249, 115, 22, .6);
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-free-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .28);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    white-space: nowrap;
}

.nav-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border: 1.5px solid var(--g200);
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--g600);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}

.nav-lang-btn:hover {
    border-color: var(--g400);
    color: var(--g900);
    background: var(--g50);
}

.btn-nav-cta {
    box-shadow: 0 2px 8px rgba(17, 24, 39, .15);
    transition: transform .2s cubic-bezier(.16, 1, .3, 1), box-shadow .2s cubic-bezier(.16, 1, .3, 1);
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(17, 24, 39, .25);
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--r-md);
    transition: background .15s;
}

.nav-burger:hover { background: var(--g100) }

.burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--g700);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.nav-burger.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-burger.open .burger-bar:nth-child(2) { opacity: 0 }
.nav-burger.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-drawer.open { display: block }

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    animation: fadeIn .25s ease;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--white);
    box-shadow: -12px 0 48px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    animation: slideInRight .3s cubic-bezier(.16, 1, .3, 1);
}

@keyframes slideInRight {
    from { transform: translateX(100%) }
    to   { transform: translateX(0) }
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--g200);
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--g500);
    border-radius: var(--r-md);
    transition: background .15s, color .15s;
    line-height: 0;
}

.drawer-close:hover {
    background: var(--g100);
    color: var(--g900);
}

.drawer-links {
    flex: 1;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--g700);
    text-decoration: none;
    padding: 11px 14px;
    border-radius: var(--r-lg);
    transition: background .15s, color .15s;
}

.drawer-links a:hover {
    background: var(--g100);
    color: var(--g900);
}

.drawer-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--g500);
    transition: background .15s, color .15s;
}

.drawer-links a:hover .drawer-link-icon {
    background: var(--g900);
    color: var(--white);
}

.drawer-link-blog {
    background: rgba(249, 115, 22, .05);
    border: 1px solid rgba(249, 115, 22, .15);
}

.drawer-link-blog:hover {
    background: rgba(249, 115, 22, .10) !important;
    color: #c2410c !important;
}

.drawer-link-blog .drawer-link-icon {
    background: rgba(249, 115, 22, .12);
    color: #f97316;
}

.drawer-link-blog:hover .drawer-link-icon {
    background: #f97316 !important;
    color: var(--white) !important;
}

.drawer-link-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: rgba(249, 115, 22, .15);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    color: #f97316;
    letter-spacing: .04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.drawer-footer {
    padding: 18px 22px;
    border-top: 1px solid var(--g200);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* HERO */
#hero {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 110px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
    animation: fadeSlideDown .8s cubic-bezier(.16, 1, .3, 1) both
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1 }
    50%       { opacity: .4 }
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeSlideUp .9s .1s cubic-bezier(.16, 1, .3, 1) both;
    font-family: 'Pacifico', cursive;
    letter-spacing: 2px;
}

.hero-title .hero-title-center { font-size: 50px }

.accent-word {
    position: relative;
    display: inline-block;
    color:rgb(74, 222, 128);
}

.accent-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .4);
    border-radius: 2px;
    animation: widthGrow 1s .8s cubic-bezier(.16, 1, .3, 1) both
}

@keyframes widthGrow {
    from { right: 100% }
    to   { right: 0 }
}

.hero-desc {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
    animation: fadeSlideUp .9s .2s cubic-bezier(.16, 1, .3, 1) both
}

.hero-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(74, 222, 128, .12);
    border: 1px solid rgba(74, 222, 128, .3);
    border-radius: var(--r-md);
    color: #4ade80;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    animation: fadeSlideUp .9s .25s cubic-bezier(.16, 1, .3, 1) both
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeSlideUp .9s .35s cubic-bezier(.16, 1, .3, 1) both
}

.hero-metrics {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    animation: fadeSlideUp .9s .45s cubic-bezier(.16, 1, .3, 1) both
}

.metric-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px
}

.hero-visual {
    position: relative;
    animation: fadeSlideUp 1s .3s cubic-bezier(.16, 1, .3, 1) both
}

.hero-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5)
}

.hero-card-hdr {
    background: rgba(255, 255, 255, .06);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

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

.wr { background: #ff5f57 }
.wy { background: #febc2e }
.wg { background: #28c840 }

.hero-card-title-bar {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-left: 4px
}

.hero-card-body { padding: 24px }

.hd-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.hd-logo {
    font-family: 'Pacifico', cursive;
    font-size: 18px;
    color: var(--white)
}

.hd-meta {
    text-align: right;
    font-size: 11px;
    color: rgba(255, 255, 255, .4)
}

.hd-meta strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2px
}

.hd-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px
}

.hd-field {
    padding: 8px 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.hd-field .lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 2px
}

.hd-field .val {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8)
}

.hd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-bottom: 14px
}

.hd-table th {
    text-align: left;
    padding: 5px 7px;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .3);
    font-weight: 600;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hd-table td {
    padding: 7px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .65)
}

.hd-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: rgba(255, 255, 255, .9)
}

.hd-total {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.hd-total .tl {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5)
}

.hd-total .tv {
    font-size: 17px;
    font-weight: 800;
    color: var(--white)
}

.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--g800);
    animation: float 4s ease-in-out infinite
}

.float-sent {
    bottom: -18px;
    left: -32px;
    animation-delay: .5s
}

.float-paid {
    top: -18px;
    right: -32px
}

@keyframes float {
    0%, 100% { transform: translateY(0) }
    50%       { transform: translateY(-8px) }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-16px) }
    to   { opacity: 1; transform: none }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px) }
    to   { opacity: 1; transform: none }
}

/* FREE BANNER */
#free-banner {
    background: var(--g900);
    padding: 64px 0
}

.free-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.free-text h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.free-text p {
    font-size: 16px;
    color: var(--g400);
    max-width: 480px
}

.free-tag {
    flex-shrink: 0;
    padding: 16px 28px;
    border: 2px solid rgba(74, 222, 128, .4);
    border-radius: var(--r-xl);
    text-align: center;
    animation: pulse-border 3s infinite
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(74, 222, 128, .4) }
    50%       { border-color: rgba(74, 222, 128, .8) }
}

.free-tag .big {
    font-size: 42px;
    font-weight: 900;
    color: #4ade80;
    letter-spacing: -.03em;
    line-height: 1
}

.free-tag .small {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px
}

/* TRUSTED */
#trusted {
    padding: 44px 0;
    background: var(--g50);
    border-top: 1px solid var(--g200);
    border-bottom: 1px solid var(--g200)
}

.trusted-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center
}

.trusted-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--g400);
    text-transform: uppercase;
    letter-spacing: .07em;
    white-space: nowrap
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--g400);
    font-size: 14px;
    font-weight: 700
}

/* FEATURES */
#features {
    padding: 96px 0;
    background: var(--white)
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px
}

.section-header p {
    font-size: 18px;
    color: var(--g600);
    margin-top: 14px
}

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

.feature-card {
    padding: 32px;
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: var(--r-xl);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s cubic-bezier(.16, 1, .3, 1), border-color .3s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--g900);
    opacity: 0;
    transition: opacity .3s
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--g900)
}

.feature-card:hover::before { opacity: 1 }

.feature-card:hover .feature-icon,
.feature-card:hover h3,
.feature-card:hover p {
    position: relative;
    z-index: 1
}

.feature-card:hover .feature-icon { background: rgba(255, 255, 255, .1) }
.feature-card:hover h3            { color: var(--white) }
.feature-card:hover p             { color: rgba(255, 255, 255, .6) }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--g900);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transition: background .3s;
    flex-shrink: 0
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 10px;
    transition: color .3s
}

.feature-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--g600);
    transition: color .3s
}

/* HOW IT WORKS */
#how-it-works {
    padding: 96px 0;
    background: var(--g900)
}

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

.hiw-connector {
    position: absolute;
    top: 36px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: var(--g700)
}

.hiw-connector-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    transition: width 1.5s cubic-bezier(.16, 1, .3, 1)
}

.hiw-connector.animated .hiw-connector-progress { width: 100% }

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 1
}

.hiw-num {
    width: 72px;
    height: 72px;
    background: var(--g800);
    border: 1px solid var(--g700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    transition: background .4s, color .4s, border-color .4s, box-shadow .4s
}

.hiw-step.step-active .hiw-num {
    background: var(--white);
    color: var(--g900);
    border-color: var(--white);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .1)
}

.hiw-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.hiw-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--g500)
}

/* MODULES */
#modules {
    padding: 96px 0;
    background: var(--g50)
}

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

.module-card {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s cubic-bezier(.16, 1, .3, 1), border-color .3s cubic-bezier(.16, 1, .3, 1)
}

.module-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
    border-color: var(--g300)
}

.module-icon {
    width: 44px;
    height: 44px;
    background: var(--g100);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--g700);
    transition: background .3s, color .3s
}

.module-card:hover .module-icon {
    background: var(--g900);
    color: var(--white)
}

.module-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 5px
}

.module-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--g600)
}

/* STATS */
#stats {
    padding: 80px 0;
    background: var(--white)
}

.currency-ticker-wrap {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    height: 1.15em;
    line-height: 1.15;
    position: relative;
    min-width: 60px;
}

.currency-ticker-slot {
    display: block;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: 1.15;
    white-space: nowrap;
}

.currency-ticker-slot.slot-enter {
    animation: slot-enter .42s cubic-bezier(.16, 1, .3, 1) forwards;
}

.currency-ticker-slot.slot-leave {
    animation: slot-leave .32s cubic-bezier(.55, 0, 1, .45) forwards;
}

@keyframes slot-enter {
    from { opacity: 0; transform: translateY(100%) }
    to   { opacity: 1; transform: translateY(0) }
}

@keyframes slot-leave {
    from { opacity: 1; transform: translateY(0) }
    to   { opacity: 0; transform: translateY(-100%) }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--g200);
    border-radius: var(--r-xl);
    overflow: hidden
}

.stat-item {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    transition: background .3s
}

.stat-item:hover { background: var(--g900) }

.stat-value {
    font-size: 44px;
    font-weight: 900;
    color: var(--g900);
    letter-spacing: -.03em;
    line-height: 1;
    transition: color .3s
}

.stat-item:hover .stat-value { color: var(--white) }

.stat-label {
    font-size: 14px;
    color: var(--g500);
    margin-top: 8px;
    transition: color .3s
}

.stat-item:hover .stat-label { color: rgba(255, 255, 255, .6) }

/* CONTACT */
#contact {
    padding: 96px 0;
    background: var(--g900);
    position: relative;
    overflow: hidden
}

.contact-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.contact-left h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.contact-left p {
    font-size: 16px;
    color: var(--g500);
    margin-bottom: 36px;
    line-height: 1.7
}

.contact-right { padding-top: 80px }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    transition: background .2s
}

.contact-info-item:hover { background: rgba(255, 255, 255, .08) }

.ci-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0
}

.ci-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 2px
}

.ci-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .06em
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    outline: none;
    transition: border-color .2s, background .2s;
    font-family: inherit;
    resize: none
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, .45) }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .09)
}

.form-group select option {
    background: var(--g800);
    color: var(--white)
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .3);
    border-radius: var(--r-lg);
    color: #4ade80;
    font-size: 14px;
    font-weight: 600
}

.form-success.show { display: flex }

.form-error {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .3);
    border-radius: var(--r-lg);
    color: #f87171;
    font-size: 14px;
    font-weight: 600
}

.form-error.show { display: flex }

/* CTA */
#cta {
    padding: 96px 0;
    background: var(--white)
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

.cta-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    color: var(--g900);
    letter-spacing: -.025em;
    line-height: 1.15;
    margin-bottom: 20px
}

.cta-desc {
    font-size: 18px;
    color: var(--g600);
    margin-bottom: 40px
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--g400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

/* FOOTER */
#footer {
    background: var(--black);
    color: var(--g500);
}

.footer-prefooter {
    background: var(--g900);
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    overflow: hidden;
}

.footer-prefooter-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, .12) 0%, transparent 70%);
    pointer-events: none;
}

.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.prefooter-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.prefooter-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .15);
    border: 1px solid rgba(249, 115, 22, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
    flex-shrink: 0;
}

.prefooter-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.prefooter-sub {
    font-size: 14px;
    color: var(--g500);
}

.prefooter-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.prefooter-free-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
    white-space: nowrap;
}

.prefooter-free-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-dot 2.5s infinite;
}

.btn-prefooter {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
    font-size: 14px;
    padding: 11px 22px;
}

.btn-prefooter:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
    transform: translateY(-1px);
}

.footer-main {
    padding: 72px 0 0;
    position: relative;
}

.footer-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
    position: relative;
}

.footer-logo { margin-bottom: 6px }

.footer-brand-desc {
    font-size: 14px;
    color: var(--g600);
    margin-top: 14px;
    max-width: 240px;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g500);
    text-decoration: none;
    transition: transform .2s, background .2s, border-color .2s, color .2s;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: transparent;
}

.social-twitter:hover  { background: #000;     color: #fff }
.social-linkedin:hover { background: #0a66c2;  color: #fff }
.social-github:hover   { background: #24292e;  color: #fff }
.social-facebook:hover { background: #1877f2;  color: #fff }

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none }
.footer-col ul li { margin-bottom: 13px }

.footer-col ul a {
    font-size: 14px;
    color: var(--g600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .15s;
    position: relative;
}

.footer-col ul a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .25);
    transition: right .2s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-col ul a:hover::after { right: 0 }

.footer-blog-link { color: var(--g500) !important }

.footer-new-badge {
    padding: 2px 7px;
    background: rgba(249, 115, 22, .15);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    color: #fb923c;
    letter-spacing: .04em;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 5px #4ade80;
    flex-shrink: 0;
    animation: pulse-dot 2.5s infinite;
}

.footer-bottom {
    padding: 22px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left p { font-size: 13px; color: var(--g700) }

.footer-made {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--g700);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal { display: flex; gap: 18px }

.footer-legal a {
    font-size: 13px;
    color: var(--g700);
    text-decoration: none;
    transition: color .15s;
}

.footer-legal a:hover { color: var(--white) }

.footer-back-top {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g500);
    flex-shrink: 0;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.footer-back-top:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid      { grid-template-columns: repeat(2, 1fr) }
    .hiw-steps          { grid-template-columns: repeat(2, 1fr) }
    .hiw-connector      { display: none }
    .contact-inner      { grid-template-columns: 1fr; gap: 48px }
    .stats-grid         { grid-template-columns: repeat(2, 1fr) }
    .footer-grid        { grid-template-columns: 1fr 1fr }
}

@media (max-width: 768px) {
    .hero-title .hero-title-center  { font-size: 38px }
    .hero-free-badge                { width: 100%; justify-content: center }
    .hero-inner                     { grid-template-columns: 1fr }
    .hero-visual                    { display: none }
    .hero-metrics                   { justify-content: center; flex-wrap: wrap; gap: 24px }
    .nav-links,
    .nav-actions,
    .nav-free-pill                  { display: none }
    .nav-burger                     { display: flex }
    .nav                            { height: 60px }
    .features-grid                  { grid-template-columns: 1fr }
    .modules-grid                   { grid-template-columns: 1fr }
    .form-row                       { grid-template-columns: 1fr }
    .contact-right                  { padding-top: 0 }
    .free-inner                     { flex-direction: column; text-align: center }
    #hero                           { padding: 80px 0 64px; min-height: auto }
    .announce-text                  { font-size: 12px; line-height: 1.4 }
    .announce-badge                 { display: none }
    .prefooter-inner                { flex-direction: column; text-align: center; align-items: center }
    .prefooter-left                 { flex-direction: column; text-align: center }
    .prefooter-right                { flex-direction: column; align-items: center }
    .footer-grid                    { grid-template-columns: 1fr; gap: 32px }
    .footer-bottom                  { flex-direction: column; text-align: center; align-items: center }
    .footer-bottom-left             { flex-direction: column; align-items: center; gap: 8px }
    .footer-bottom-right            { flex-direction: column; align-items: center; gap: 14px }
    .footer-legal                   { justify-content: center }
    .footer-legal a                 { font-size: 12px }
}

@media (max-width: 480px) {
    .hiw-steps                      { grid-template-columns: 1fr }
    .hero-actions,
    .cta-actions                    { flex-direction: column; align-items: stretch }
    .hero-actions .btn,
    .cta-actions .btn               { justify-content: center }
    .stats-grid                     { grid-template-columns: 1fr 1fr }
    .footer-main                    { padding-top: 48px }
}

/* Utility classes extracted from inline styles */
.metric-value        { display: flex; align-items: center; gap: 4px }
.ticker-hero         { min-width: 40px; font-size: inherit; font-weight: inherit }
.ticker-card         { min-width: 120px; font-size: 17px; font-weight: 800 }
.hero-wdots          { display: flex; gap: 6px }
.hero-card-sublabel  { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 2px }
.hiw-section-title   { color: var(--white) }
.hiw-section-desc    { color: var(--g500) }
.stat-value-flex     { display: flex; align-items: center; gap: 6px; justify-content: center }
.stat-unit           { font-size: 28px }
.spacer-24           { height: 24px }
.spacer-20           { height: 20px }
.don-btn-full        { width: 100%; justify-content: center }
.logo-img            { width: 28px }
.btn-full-center     { justify-content: center }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    #particles-canvas { display: none }
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 8px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 var(--r-md) var(--r-md);
    text-decoration: none;
    transition: top .15s ease;
}
.skip-link:focus { top: 0 }

/* FOCUS VISIBLE */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .7);
    outline-offset: 3px;
    border-radius: 2px;
}