*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #050816;
    --bg-card: #081020;
    --bg-card-soft: #0b1224;
    --accent: #00d0ff;
    --accent-soft: rgba(0,208,255,0.15);
    --text: #f9fbff;
    --muted: #9ba4c9;
    --border: #151a2b;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 20px 60px rgba(0,0,0,0.6);
    --max-width: 1120px;
}


    body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;

    /* base dark gradient */
    background-color: #050816;
    background-image:
        radial-gradient(
            circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
            rgba(0, 208, 255, 0.18),
            transparent 60%
        ),
        radial-gradient(circle at top, #07162d 0, #050816 50%, #02040a 100%);

    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #f9fbff;
}



/* NAV */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(5,8,22,0.95), rgba(5,8,22,0.6));
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #021018;
}
.logo-circle-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.logo-text {
    font-weight: 700;
    letter-spacing: .08em;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #021018;
}

.btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: var(--text);
    background: transparent;
}

/* SECTIONS */

.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    margin: 0 0 12px;
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    margin: 0 0 32px;
    color: var(--muted);
    max-width: 640px;
}

/* HERO */
.hero {
    position: relative;
    padding: 160px 24px 110px;
    overflow: hidden;
    min-height: 650px;
}
    /* adjust if you want taller/shorter */


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* fills area without distortion */
    z-index: -2;                /* behind everything */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);  /* darken video a bit */
    z-index: -1;
}

.hero-inner {
    position: relative;
    z-index: 10;                /* makes your text/logo sit on top */
    text-align: center;
}


.hero-logo-circle {
    width: 72px;
    height: 72px;
    margin: 1px auto 1px;
    border-radius: 999px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.hero-logo-circle-img {
    width:250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(14, 14, 14, 0.962);
    display: block;
    margin: 0 auto;
}


.hero-title {
    font-size: 48px;
    margin: 0 0 16px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stats {
    display: inline-flex;
    gap: 32px;
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(5,8,22,0.8);
    border: 1px solid rgba(255,255,255,0.05);
}
/* Water ripple canvas overlay */
#water-canvas {
    position: absolute;
    inset: 0;                  /* top:0; right:0; bottom:0; left:0 */
    width: 100%;
    height: 100%;
    pointer-events: none;      /* so clicks go through */
    z-index: 5;                /* above video/overlay, below text */
    mix-blend-mode: screen;    /* gives a nice glowing effect */
    opacity: 0.10;            /* adjust if too strong */
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
}

.stat-value {
    font-weight: 600;
    margin-top: 4px;
}

.stat-value.positive {
    color: #16c784;
}

/* CARD GRIDS */

.card-grid,
.steps-grid,
.team-grid,
.community-grid,
.roadmap-grid {
    display: grid;
    gap: 24px;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.step-card,
.team-card,
.community-card,
.token-details-card,
.roadmap-card,
.newsletter-card,
.cta-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.info-card h3,
.step-card h3,
.team-card h3,
.community-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.info-card p,
.step-card p,
.team-card p,
.community-card p {
    margin: 0;
    color: var(--muted);
}

/* TOKENOMICS */

.tokenomics-layout {
    display: grid;
    gap: 32px;
}

@media (min-width: 900px) {
    .tokenomics-layout {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
}

.token-chart {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
     display: none;
}

.token-details-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.token-details-card li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.token-details-card li span:first-child {
    color: var(--muted);
}

/* ROADMAP */

.roadmap-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.roadmap-card {
    position: relative;
    background: var(--bg-card-soft);
}

.roadmap-card.highlight {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0,208,255,0.3), var(--shadow-soft);
}

.roadmap-phase {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}

.roadmap-status {
    display: inline-flex;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    margin: 4px 0 12px;
}

.roadmap-card ul {
    padding-left: 18px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* STEPS */

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
    position: relative;
}

.step-index {
    position: absolute;
    right: 22px;
    top: 20px;
    font-weight: 800;
    font-size: 22px;
    color: rgba(255,255,255,0.06);
}

/* CTA */

.section-cta {
    padding-top: 0;
}

.cta-card {
    text-align: center;
    background: radial-gradient(circle at top, rgba(0,208,255,0.12), var(--bg-card));
}

/* TEAM */

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.team-card {
    text-align: center;
}

.team-avatar-circle {
    width: 72px;
    height: 72px;
    margin: 6px auto 12px;
    border-radius: 999px;
    background: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #021018;
    font-weight: 700;
    font-size: 28px;
}

.team-role {
    font-size: 14px;
    color: var(--accent);
}

.team-bio {
    color: var(--muted);
    font-size: 14px;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.team-links a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #050816;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    color: var(--muted);
}

/* COMMUNITY */

.community-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.community-card {
    text-decoration: none;
    color: inherit;
    background: radial-gradient(circle at top, rgba(0,208,255,0.06), var(--bg-card));
}

/* NEWSLETTER */
.contact-box {
    background: #0f1729;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    width: 90%;
    margin: 0 auto 80px auto;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.contact-subtitle {
    color: #b3bfd2;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #0a1120;
    border: 1px solid #1e293b;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.btn-contact {
    background: #00d5ff;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-contact:hover {
    background: #00b8e6;
}

.section-newsletter {
    padding-top: 40px;
}

.newsletter-card {
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.newsletter-form input {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #050816;
    color: var(--text);
    min-width: 240px;
}

/* FOOTER */

.footer {
    padding: 40px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: #040612;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

@media (min-width: 800px) {
    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-text {
    color: var(--muted);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #050816;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--text);
}

/* RESPONSIVE NAV */

@media (max-width: 900px) {
    .nav-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-stats {
        flex-direction: column;
        border-radius: 24px;
    }
}
