/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
    --primary-blue: #007aff;
    --black: #000000;
    --white: #ffffff;
    --grey-50: #fafafa;
    --grey-100: #f5f5f5;
    --grey-200: #e5e7eb;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-700: #374151;
    --grey-900: #111827;
    --green-light: #e8f5e9;
    --green-card: #f0f9f0;

    --font-heading: 'Anek Devanagari', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    --max-width: 1240px;
    --header-height: 72px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-heading);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Utility ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    color: var(--black);
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-700);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .dropdown {
    position: relative;
}

/* Bootstrap Dropdown Overrides */
.nav-links .dropdown .btn-login-toggle.dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--grey-700) !important;
    background-color: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    padding: 10px 24px !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.nav-links .dropdown .btn-login-toggle.dropdown-toggle:hover {
    background-color: #f9fafb !important;
    border-color: #9ca3af !important;
    color: #000000 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.nav-links .dropdown .btn-login-toggle.dropdown-toggle::after {
    display: none !important;
}

.nav-links .dropdown .btn-login-toggle.dropdown-toggle svg {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    transition: transform 0.2s ease !important;
    color: #6b7280 !important;
}

.nav-links .dropdown .btn-login-toggle.dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg) !important;
}

.nav-links .dropdown-menu {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    padding: 12px !important;
    min-width: 200px !important;
    background: #ffffff !important;
    margin-top: 12px !important;
    transform: translateX(-40px) !important;
}

.nav-links .dropdown-item {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--grey-700) !important;
    padding: 10px 16px !important;
    transition: var(--transition-fast) !important;
    border-radius: var(--radius-sm) !important;
}

.nav-links .dropdown-item:hover {
    background: var(--grey-50) !important;
    color: var(--primary-blue) !important;
    transform: translateX(4px) !important;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    background: var(--grey-900);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-buy .coin-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007aff, #00c6ff);
    flex-shrink: 0;
}

/* Demo Button - Force Premium Style */
.btn-demo {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 28px !important;
    border-radius: var(--radius-full) !important;
    transition: var(--transition) !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.2) !important;
}

.btn-demo:hover {
    background: #0066d6 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3) !important;
    color: var(--white) !important;
}

.btn-demo::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION 1: Vesting (Now Hero Main) ===== */
.hero-vesting {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    /* Fallback */
    background-image: url('images/hrms_hero_bg_colored_blur.png');
    /* background-image: url('images/hrms_hero_bg_white.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
    /* Clear header margin */
    padding-top: calc(var(--header-height));
    /* Increased clearance */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Lightly transparent white overlay to keep text legible but show the background */
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.hero-text-left {
    text-align: left;
    padding-right: 40px;
}

.hero-text-left h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-left p {
    font-size: 18px;
    max-width: 100%;
    margin-left: 0;
    line-height: 1.8;
}

.hero-mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

@media (max-width: 576px) {


    .hero-text-left {
        padding-top: 40px;
        padding-right: 0;
        padding-left: 0 ;
    }

    .hero-vesting {
        min-height: 100dvh;
    }
    .nav-links.active{
        height: max-content;
    }
}

.floating-phone {
    max-width: 320px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Cleanup old styles */
.hero-vesting::before,
.hero-vesting::after {
    display: none;
}

/* ===== HERO SECTION 2: The Chain ===== */
.hero-chain {
    position: relative;
    padding: 100px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.hero-chain-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-chain h1 {
    font-family: var(--font-heading);
    font-size: 57px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-chain h1 .accent {
    color: var(--primary-blue);
}

.hero-chain .subtitle {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    color: var(--grey-500);
    margin-bottom: 6px;
}

.hero-chain .description {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--grey-500);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Action Buttons Row */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--grey-200);
    transition: var(--transition);
    cursor: pointer;
}

.action-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

/* Phones + Chain visual */
.phones-visual {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.phones-visual img {
    max-width: 700px;
    width: 100%;
}

/* ===== TGE SECTION ===== */
.tge-section {
    position: relative;
    padding: 80px 0;
    background: var(--grey-50);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden;
}

.tge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.tge-text {
    flex: 1;
}

.tge-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 24px;
}

.tge-text h2 span {
    display: block;
    color: var(--grey-500);
    font-size: 36px;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary-blue);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #0066d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.3);
}

.tge-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tge-visual img {
    max-width: 400px;
    width: 100%;
}

/* ===== KEY DATES / ROADMAP ===== */
.key-dates {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.key-dates-header {
    text-align: center;
    margin-bottom: 48px;
}

.key-dates-header h2 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey-400);
    margin-bottom: 4px;
}

.roadmap-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.roadmap-slider::-webkit-scrollbar {
    display: none;
}

.roadmap-slider:active {
    cursor: grabbing;
}

.roadmap-card {
    flex-shrink: 0;
    width: 260px;
    padding: 28px 24px;
    background: var(--green-card);
    border-radius: var(--radius-lg);
    scroll-snap-align: start;
    transition: var(--transition);
    border: 1px solid rgba(0, 150, 0, 0.06);
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.roadmap-date {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.roadmap-date::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e7d32;
    display: inline-block;
}

.roadmap-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--grey-700);
    line-height: 1.5;
}

/* ===== ADVANCED RELEASE SECTION ===== */
.advanced-section {
    padding: 100px 0;
    background: var(--grey-50);
}

.advanced-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.advanced-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 16px;
}

.advanced-header p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--grey-500);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 122, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 122, 255, 0.15);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--grey-500);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.feature-card ul li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== DEVELOPERS / ADOPTION SECTION ===== */
.dev-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.dev-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.dev-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.dev-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 12px;
}

.dev-content .dev-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--grey-500);
    margin-bottom: 48px;
}

.dev-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.dev-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.dev-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.dev-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.12), rgba(0, 122, 255, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.dev-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-blue);
}

.dev-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.dev-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-200);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.5fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--grey-500);
    padding: 5px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-blue);
}

.footer-social {
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: var(--white);
}

.social-icon:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 122, 255, 0.05);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: var(--grey-500);
}

.social-icon:hover svg {
    color: var(--primary-blue);
}

.footer-social p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--grey-400);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--grey-200);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 28px;
    height: 28px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.footer-logo small {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--grey-400);
    margin-top: 2px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--grey-500);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-chain h1 {
        font-size: 44px;
    }

    .tge-content {
        flex-direction: column;
        text-align: center;
    }

    .tge-text h2 {
        font-size: 38px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .dev-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-social {
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-vesting h2 {
        font-size: 34px;
    }

    .hero-chain h1 {
        font-size: 32px;
    }

    .hero-chain .description {
        font-size: 15px;
    }

    .action-buttons {
        gap: 8px;
    }

    .action-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .tge-text h2 {
        font-size: 30px;
    }

    .advanced-header h2 {
        font-size: 30px;
    }

    .dev-content h2 {
        font-size: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-vesting h2 {
        font-size: 28px;
    }

    .hero-chain h1 {
        font-size: 26px;
    }

    .tge-text h2 {
        font-size: 26px;
    }

    .advanced-header h2 {
        font-size: 26px;
    }

    .feature-card {
        padding: 24px;
    }
}