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

html {
    overflow-x: hidden;
    width: 100%;
}

/* Cookie banner & modal - Light theme (default) */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #fff;
    color: #333;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-banner__text {
    max-width: 720px;
    color: #333;
}

.cookie-banner__text a {
    color: #FF4800;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    border-radius: 999px;
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-weight: 500;
}

.cookie-btn--primary {
    background: #FF4800;
    color: #fff;
}

.cookie-btn--primary:hover {
    background: #e13f00;
}

.cookie-btn--ghost {
    background: transparent;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.cookie-btn--ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cookie-btn--accept {
    background: #22c55e !important;
    color: #fff !important;
}

.cookie-btn--accept:hover {
    background: #16a34a !important;
}

.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.cookie-modal {
    max-width: 640px;
    width: 100%;
    background: #fff;
    color: #333;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cookie-modal__title {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
}

.cookie-modal__close {
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease;
}

.cookie-modal__close:hover {
    color: #000;
}

.cookie-modal__body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 4px;
}

.cookie-modal__block {
    margin-bottom: 14px;
    padding: 12px 12px 10px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-modal__block h3 {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #000;
}

.cookie-modal__block p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.cookie-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.cookie-toggle-header h3 {
    margin: 0;
    flex: 1;
}

.cookie-toggle {
    position: relative;
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: #d1d5db;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.cookie-toggle__knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle--on {
    background: #22c55e;
}

.cookie-toggle--on .cookie-toggle__knob {
    transform: translateX(18px);
}

.cookie-toggle--disabled {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.cookie-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
    .cookie-modal {
        max-width: 100%;
    }
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    padding-top: 60px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(to right, transparent 0%, transparent calc(20% - 0.5px), rgba(200, 200, 200, 0.15) calc(20% - 0.5px), rgba(200, 200, 200, 0.15) calc(20% + 0.5px), transparent calc(20% + 0.5px)),
        linear-gradient(to right, transparent 0%, transparent calc(40% - 0.5px), rgba(200, 200, 200, 0.15) calc(40% - 0.5px), rgba(200, 200, 200, 0.15) calc(40% + 0.5px), transparent calc(40% + 0.5px)),
        linear-gradient(to right, transparent 0%, transparent calc(60% - 0.5px), rgba(200, 200, 200, 0.15) calc(60% - 0.5px), rgba(200, 200, 200, 0.15) calc(60% + 0.5px), transparent calc(60% + 0.5px)),
        linear-gradient(to right, transparent 0%, transparent calc(80% - 0.5px), rgba(200, 200, 200, 0.15) calc(80% - 0.5px), rgba(200, 200, 200, 0.15) calc(80% + 0.5px), transparent calc(80% + 0.5px));
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #FF4800;
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* Scroll animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-fade-in.animate {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-fade-left.animate {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-fade-right.animate {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.hero-logo,
.section-title,
.metric-value,
.author-name,
.footer-title {
    font-family: 'Days One', sans-serif;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding-bottom: 10px;
    will-change: transform;
    transform: translateZ(0);
}

.header .container {
    max-width: 100%;
    padding: 0;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: translateY(-1px);
}

.logo img {
    height: 20px;
    width: auto;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

.header-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-right: 20px;
}

.ecosystem-dropdown {
    position: relative;
}

.ecosystem-dropdown .btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.ecosystem-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.ecosystem-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 8px;
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.ecosystem-dropdown:hover .ecosystem-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ecosystem-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #000;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.ecosystem-menu-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.ecosystem-menu-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.ecosystem-menu-icon-dark {
    display: none;
}

.ecosystem-menu-icon-light {
    display: block;
}

.ecosystem-menu-name {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.menu-toggle {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FF4800;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.burger-menu span:nth-child(1) {
    top: calc(50% - 5px);
}

.burger-menu span:nth-child(2) {
    top: calc(50% + 5px);
}

.btn-login {
    font-family: 'Lato', sans-serif;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: #FF4800;
    border: 1px solid #FF4800;
    padding: 0 24px;
    height: 40px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-login:hover {
    background: #FF4800;
    color: #fff;
}

.btn-signup {
    font-family: 'Lato', sans-serif;
    background: #FF4800;
    color: #fff;
    padding: 0 24px;
    height: 40px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-signup:hover {
    background: #e63f00;
    border-color: #e63f00;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.theme-toggle:hover {
    background: transparent;
}

.theme-icon {
    color: #FF4800;
    transition: all 0.3s ease;
    position: absolute;
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg);
    pointer-events: none;
}

.theme-toggle:hover .moon-icon {
    opacity: 0;
}

.sun-icon {
    opacity: 1;
    pointer-events: auto;
}

.theme-toggle:hover .sun-icon {
    opacity: 0.7;
}

body.dark-theme .sun-icon {
    opacity: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

body.dark-theme .theme-toggle:hover .sun-icon {
    opacity: 0;
}

body.dark-theme .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
    pointer-events: auto;
}

body.dark-theme .theme-toggle:hover .moon-icon {
    opacity: 0.7;
}

/* Dark Theme Styles */
body.dark-theme {
    background: #0f0f28;
    color: #e0e0e0;
}

body.dark-theme .header {
    background: rgba(15, 15, 40, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

body.dark-theme .hero,
body.dark-theme .metrics,
body.dark-theme .mission,
body.dark-theme .vision,
body.dark-theme .global,
body.dark-theme .security,
body.dark-theme .milestones,
body.dark-theme .partners,
body.dark-theme .news,
body.dark-theme .footer {
    background: #0f0f28;
}

body.dark-theme .hero-title,
body.dark-theme .section-title,
body.dark-theme .footer-title,
body.dark-theme .metric-value,
body.dark-theme .author-name,
body.dark-theme .news-source,
body.dark-theme .security-name,
body.dark-theme .timeline-year,
body.dark-theme .global-title {
    color: #DDF218;
}

body.dark-theme .hero-subtitle,
body.dark-theme .section-text,
body.dark-theme .news-desc,
body.dark-theme .security-desc,
body.dark-theme .timeline-content,
body.dark-theme .footer-disclaimer,
body.dark-theme .metric-label,
body.dark-theme .ecosystem-desc,
body.dark-theme .author-title {
    color: #b0b0b0;
}

body.dark-theme .ecosystem-name {
    color: #fff;
}

body.dark-theme .news-item {
    background-color: transparent;
}

body.dark-theme .news-item:hover {
    background: rgba(26, 26, 58, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

body.dark-theme .country-item {
    background: transparent;
    border-color: #DDF218;
    color: #DDF218;
}

body.dark-theme .country-item.active {
    background: #DDF218;
    color: #0f0f28;
}

body.dark-theme .news-date {
    color: #666;
}

body.dark-theme .footer-copyright,
body.dark-theme .footer-links,
body.dark-theme .footer-link,
body.dark-theme .footeropyright {
    color: #888;
}

body.dark-theme .btn-login {
    background: rgba(26, 26, 58, 0.5);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: #DDF218;
    border: 1px solid #DDF218;
}

body.dark-theme .btn-login:hover {
    background: #DDF218;
    color: #0f0f28;
}

body.dark-theme .btn-signup {
    background: #DDF218;
    color: #0f0f28;
}

body.dark-theme .theme-toggle {
    background: transparent;
    border: none;
}

body.dark-theme .theme-icon {
    color: #DDF218;
}

body.dark-theme::before {
    display: none;
}

body.dark-theme .value-tooltip {
    background: rgba(26, 26, 58, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(221, 242, 24, 0.2);
}

body.dark-theme .tooltip-title {
    color: #DDF218;
}

body.dark-theme .tooltip-text {
    color: #b0b0b0;
}

body.dark-theme .timeline-content li::before {
    color: #DDF218;
}

body.dark-theme .progress-bar {
    background: #DDF218;
}

body.dark-theme .logo-light {
    display: none;
}

body.dark-theme .logo-dark {
    display: block;
}

body.dark-theme .hero-logo .main-text,
body.dark-theme .hero-logo .letter {
    color: #DDF218;
}

body.dark-theme .hero-logo .masked-w,
body.dark-theme .hero-logo .masked-p {
    color: #DDF218;
}

body.dark-theme .hero-video-container .hero-logo .main-text,
body.dark-theme .hero-video-container .hero-logo .letter {
    color: #fff;
}

body.dark-theme .hero-video-container .hero-logo .masked-w,
body.dark-theme .hero-video-container .hero-logo .masked-p {
    color: #fff;
}

body.dark-theme .value-word {
    color: transparent;
    -webkit-text-stroke: 2px #DDF218;
    text-stroke: 1px #DDF218;
}

body.dark-theme .value-word:hover {
    color: #DDF218;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

body.dark-theme .ecosystem {
    background: linear-gradient(135deg, #DDF218 0%, #B8D916 100%);
}

body.dark-theme .ecosystem-title,
body.dark-theme .ecosystem-name,
body.dark-theme .ecosystem-desc {
    color: #000;
}

body.dark-theme .ecosystem-icon {
    filter: brightness(0);
}

body.dark-theme .ecosystem-item-partner .ecosystem-icon {
    filter: none !important;
}

body.dark-theme .vision-quote,
body.dark-theme .author-name {
    color: #DDF218;
}

body.dark-theme .world-map-light {
    display: none;
}

body.dark-theme .world-map-dark {
    display: block;
}

body.dark-theme .timeline-content {
    color: #fff;
}

body.dark-theme .timeline-content li {
    color: #fff;
}

body.dark-theme .partners-marquee {
    background: transparent;
}

body.dark-theme .partner-logo {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

body.dark-theme .partner-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px #DDF218) drop-shadow(0 0 20px #DDF218);
    opacity: 1;
}

body.dark-theme .legal-page {
    background: #0f0f28;
}

body.dark-theme .legal-title {
    color: #DDF218;
}

body.dark-theme .legal-updated {
    color: #b0b0b0;
}

body.dark-theme .legal-content h2 {
    color: #DDF218;
}

body.dark-theme .legal-content h3 {
    color: #DDF218;
}

body.dark-theme .legal-content p,
body.dark-theme .legal-content ul,
body.dark-theme .legal-content li {
    color: #e0e0e0;
}

body.dark-theme .legal-content strong {
    color: #fff;
}

body.dark-theme .ecosystem-menu {
    background: rgba(15, 15, 40, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

body.dark-theme .ecosystem-menu-item {
    color: #e0e0e0;
}

body.dark-theme .ecosystem-menu-item:hover {
    background: rgba(221, 242, 24, 0.1);
}

body.dark-theme .ecosystem-menu-name {
    color: #e0e0e0;
}

body.dark-theme .ecosystem-menu-icon-light {
    display: none;
}

body.dark-theme .ecosystem-menu-icon-dark {
    display: block;
}


body.dark-theme .burger-menu span {
    background: #DDF218;
}

/* Cookie banner & modal - Dark theme */
body.dark-theme .cookie-banner {
    background: #0f0f28;
    color: #e0e0e0;
    border-top: 1px solid rgba(221, 242, 24, 0.2);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.5);
}

body.dark-theme .cookie-banner__text {
    color: #e0e0e0;
}

body.dark-theme .cookie-banner__text a {
    color: #DDF218;
    text-decoration: underline;
}

body.dark-theme .cookie-btn--primary {
    background: #DDF218;
    color: #0f0f28;
}

body.dark-theme .cookie-btn--primary:hover {
    background: #c4d91f;
}

body.dark-theme .cookie-btn--ghost {
    color: #e0e0e0;
    border: 1px solid rgba(221, 242, 24, 0.4);
}

body.dark-theme .cookie-btn--ghost:hover {
    background: rgba(221, 242, 24, 0.1);
}

body.dark-theme .cookie-btn--accept {
    background: #22c55e !important;
    color: #fff !important;
}

body.dark-theme .cookie-btn--accept:hover {
    background: #16a34a !important;
}

body.dark-theme .cookie-modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

body.dark-theme .cookie-modal {
    background: #0f0f28;
    color: #e0e0e0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

body.dark-theme .cookie-modal__title {
    color: #DDF218;
}

body.dark-theme .cookie-modal__close {
    color: #9ca3af;
}

body.dark-theme .cookie-modal__close:hover {
    color: #DDF218;
}

body.dark-theme .cookie-modal__block {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid rgba(221, 242, 24, 0.15);
}

body.dark-theme .cookie-modal__block h3 {
    color: #DDF218;
}

body.dark-theme .cookie-modal__block p {
    color: #b0b0b0;
}

body.dark-theme .cookie-toggle {
    background: #4b5563;
}

body.dark-theme .cookie-toggle--on {
    background: #22c55e;
}

body.dark-theme .cookie-toggle__knob {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    body.dark-theme .header-nav {
        background: rgba(15, 15, 40, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0 0 80px;
    overflow: hidden;
}

.hero-logo {
    font-family: 'Days One', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 30px;
    letter-spacing: 0;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-logo .masked-w,
.hero-logo .masked-p {
    overflow: hidden;
    display: inline-block;
    text-align: left;
}

.hero-logo .masked-w {
    text-align: right;
}

.hero-logo .masked-p {
    direction: rtl;
    text-align: left;
}

.hero-logo .mask-6 {
    width: 6px;
}

.hero-logo .mask-20 {
    width: 20px;
}

.hero-logo .main-text {
    display: inline-block;
}

.hero-logo .letter {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-logo:hover .letter:nth-child(1) { transform: translateY(-3px); transition-delay: 0s; }
.hero-logo:hover .letter:nth-child(2) { transform: translateY(-5px); transition-delay: 0.05s; }
.hero-logo:hover .letter:nth-child(3) { transform: translateY(-2px); transition-delay: 0.1s; }
.hero-logo:hover .letter:nth-child(4) { transform: translateY(-6px); transition-delay: 0.15s; }
.hero-logo:hover .letter:nth-child(5) { transform: translateY(-4px); transition-delay: 0.2s; }
.hero-logo:hover .letter:nth-child(6) { transform: translateY(-3px); transition-delay: 0.25s; }
.hero-logo:hover .letter:nth-child(7) { transform: translateY(-5px); transition-delay: 0.3s; }
.hero-logo:hover .letter:nth-child(8) { transform: translateY(-4px); transition-delay: 0.35s; }
.hero-logo:hover .letter:nth-child(9) { transform: translateY(-3px); transition-delay: 0.4s; }

.hero-video-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    z-index: 3;
    border-radius: 16px;
    height: 400px;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transform: translateZ(0);
}

.hero-video-container .hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0;
}

.hero-video-container .hero-logo .main-text,
.hero-video-container .hero-logo .masked-w,
.hero-video-container .hero-logo .masked-p {
    color: #fff;
}

.hero-video-container .hero-logo .letter {
    color: #fff;
}

.hero-title {
    font-size: 80px;
    font-weight: 400;
    color: #FF4800;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Metrics Section */
.metrics {
    padding: 120px 0;
    contain: layout style paint;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.metric-item {
    text-align: left;
}

.metric-item:nth-child(odd) {
    text-align: right;
}

.metric-value {
    font-size: 40px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 12px;
    line-height: 1;
}

.metric-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    text-align: center;
    overflow: visible;
    contain: layout style;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-text {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.mission-values {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.value-word {
    font-family: 'Days One', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px #FF4800;
    text-stroke: 1px #FF4800;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: none;
    transition: color 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1;
}

.value-word.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-word:hover {
    color: #FF4800;
}

.value-word:nth-child(1) {
    text-align: left;
    align-self: flex-start;
}

.value-word:nth-child(2) {
    text-align: center;
    align-self: center;
    width: 100%;
}

.value-word:nth-child(3) {
    text-align: right;
    align-self: flex-end;
}

.value-tooltip {
    position: fixed;
    width: 310px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.value-tooltip.active {
    opacity: 1;
}

.tooltip-title {
    display: none;
}

.tooltip-text {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    text-align: left;
}

/* Ecosystem Section */
.ecosystem {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(63.42% 63.42% at 51.87% 100%, #FF8D61 0%, #FF4800 100%);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-grid-top {
    margin-bottom: 60px;
}

.ecosystem-grid-bottom {
    margin-top: 60px;
}

.ecosystem-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    text-align: center;
}

.ecosystem-title {
    margin: 0;
    color: #fff;
}

.ecosystem-arrow {
    width: 252px;
    height: auto;
    flex-shrink: 0;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ecosystem-arrow-dark {
    display: none;
}

.ecosystem-arrow-light {
    display: block;
}

@media (min-width: 769px) {
    .ecosystem-arrow-light {
        display: block !important;
    }
    
    .ecosystem-arrow-dark {
        display: none !important;
    }
    
    body.dark-theme .ecosystem-arrow-light {
        display: none !important;
    }
    
    body.dark-theme .ecosystem-arrow-dark {
        display: block !important;
    }
}

.ecosystem-arrow path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.ecosystem-item {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.ecosystem-item:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

/* Link Preview */
.link-preview-container {
    display: none;
}

.link-preview-wrapper {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 320px;
    transform-origin: bottom center;
}

/* Prevent preview from going off-screen */
.ecosystem-item {
    overflow: visible;
}

@media (max-width: 768px) {
    .link-preview-wrapper {
        width: 280px;
    }

    .ecosystem-arrow-light,
    .ecosystem-arrow-dark {
        display: none !important;
    }
}

.link-preview-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

.link-preview-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

/* Dark theme */
body.dark-theme .link-preview-wrapper {
    background: #0f0f28;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark-theme .link-preview-arrow {
    border-top-color: #0f0f28;
}

.ecosystem-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.ecosystem-icon-dark {
    display: none;
}

.ecosystem-icon-light {
    display: block;
}

body.dark-theme .ecosystem-icon-light {
    display: none;
}

body.dark-theme .ecosystem-icon-dark {
    display: block;
}

.ecosystem-item-partner .ecosystem-icon {
    filter: none !important;
}

.ecosystem-content {
    flex: 1;
}

.ecosystem-name {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1;
}

.ecosystem-desc {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-top: 12px;
}

.ecosystem-item-partner {
    position: relative;
}

.ecosystem-item-partner::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #fff;
    border: 1px solid #FF4800;
    border-radius: 12px;
    z-index: -1;
}

.ecosystem-item-partner .ecosystem-name {
    color: #FF4800;
}

.ecosystem-item-partner .ecosystem-desc {
    color: #FF4800;
}

.ecosystem-item-partner .ecosystem-icon {
    filter: none !important;
}

.ecosystem-item-partner .ecosystem-icon-dark,
.ecosystem-item-partner .link-preview-image-dark {
    display: none;
}

.ecosystem-item-partner .ecosystem-icon-light,
.ecosystem-item-partner .link-preview-image-light {
    display: block;
}

body.dark-theme .ecosystem-item-partner::before {
    background: #0f0f28;
    border-color: #ddf218;
}

body.dark-theme .ecosystem-item-partner .ecosystem-name,
body.dark-theme .ecosystem-item-partner .ecosystem-desc {
    color: #ddf218;
}

body.dark-theme .ecosystem-item-partner .ecosystem-icon-light,
body.dark-theme .ecosystem-item-partner .link-preview-image-light {
    display: none;
}

body.dark-theme .ecosystem-item-partner .ecosystem-icon-dark,
body.dark-theme .ecosystem-item-partner .link-preview-image-dark {
    display: block;
    filter: none !important;
}

/* Vision Section */
.vision {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

.vision-quote {
    font-family: 'Days One', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FF4800;
    max-width: 1000px;
    margin: 0 auto 60px;
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: 0;
}

.vision-quote::before {
    content: '"';
}

.vision-quote::after {
    content: none;
}

.vision-author {
    margin-top: 60px;
}

.author-photo {
    width: 300px;
    height: 195px;
    border-radius: 80px;
    object-fit: cover;
    margin-bottom: 32px;
}

.author-name {
    font-size: 18px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.author-title {
    font-size: 16px;
    font-weight: 400;
    color: #FF4800;
    letter-spacing: 0;
}

/* Global Section */
.global {
    padding: 120px 0;
    background: #fff;
}

.global-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.global-map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.world-map-base {
    width: 100%;
    height: auto;
    display: block;
    grid-column: 1;
    grid-row: 1;
    pointer-events: none;
}

.world-map-dark {
    display: none;
}

.world-map-light {
    display: block;
}

.world-map-base circle[fill="#FF4800"]:nth-of-type(1),
.world-map-base circle[fill="#FF4800"]:nth-of-type(2),
.world-map-base circle[fill="#FF4800"]:nth-of-type(3) {
    animation: mapDotPulse 3s ease-in-out infinite;
    transform-origin: center;
    will-change: transform, opacity;
}

.world-map-base circle[fill="#FF4800"]:nth-of-type(1) {
    animation-delay: 0s;
}

.world-map-base circle[fill="#FF4800"]:nth-of-type(2) {
    animation-delay: 1s;
}

.world-map-base circle[fill="#FF4800"]:nth-of-type(3) {
    animation-delay: 2s;
}

@keyframes mapDotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.global-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    grid-column: 1;
    grid-row: 1;
}

.global-title {
    font-family: 'Days One', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FF4800;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: left;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    align-items: flex-start;
    max-width: 100%;
}

.country-item {
    display: inline-block;
    padding: 3.5px 12px;
    border: 1px solid #FF4800;
    border-radius: 50px;
    background: #fff;
    color: #FF4800;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    white-space: nowrap;
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: default;
}

.country-item.active {
    background: #FF4800;
    color: #fff;
}

/* Static badges: no hover/active scaling */

.map-dot {
    position: absolute;
	width: 28px;
	height: 28px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    background: transparent;
    grid-column: 1;
    grid-row: 1;
    pointer-events: auto;
}

/* Static dots: no hover/active visuals */


.office-marker {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF4800;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.country-label {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    background: rgba(255, 72, 0, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Days One', sans-serif;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.office-marker:hover .country-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Security Section */
.security {
    padding: 120px 0;
    text-align: center;
}

.security .section-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.security .section-title,
.security .section-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-item {
    text-align: left;
}

.security-name {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.security-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

/* Milestones Section */
.milestones {
    padding: 120px 0;
    text-align: center;
}

.milestones-content {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 120px;
}

.timeline {
    position: relative;
    max-width: 100%;
    padding-left: 120px;
    text-align: left;
}


.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 0;
    position: absolute;
    left: -120px;
    top: 0;
    width: 80px;
    text-align: right;
    text-transform: uppercase;
}

.timeline-content {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #000;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: -20px;
    top: 0;
    color: #FF4800;
    font-size: 1.2em;
    line-height: 1.6;
}

.timeline-content li:last-child {
    margin-bottom: 0;
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.partners-marquee {
    margin-top: 60px;
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 60s linear infinite;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

.partner-logo {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.partner-logo-large {
    max-height: 75px;
    max-width: 225px;
}

.partner-logo-xlarge {
    max-height: 112.5px;
    max-width: 337.5px;
}

.partner-logo:hover {
    filter: brightness(0) saturate(100%) invert(32%) sepia(94%) saturate(3071%) hue-rotate(8deg) brightness(101%) contrast(105%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* News Section */
.news {
    padding: 120px 0;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.news-item {
    text-align: left;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 16px;
    background-color: transparent;
    padding: 16px;
}

.news-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.news-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Square 1:1 aspect ratio for reference */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 16px 0 0;
}

.news-source {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
}

.news-date {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-bottom: 16px;
}

.news-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 120px 0 60px;
    text-align: center;
    background: #fff;
}

.footer-title {
    font-size: 56px;
    font-weight: 400;
    color: #FF4800;
    margin-bottom: 60px;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-disclaimer {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    margin: 40px auto 0;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.footer-copyright,
.footer-links {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 10;
}

.footer-copyright {
    text-align: left;
}

.footer-links {
    text-align: right;
}

.footeropyright {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF4800;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0;
    background: #fff;
}

.legal-title {
    font-family: 'Days One', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FF4800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.legal-updated {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Days One', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FF4800;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.legal-content h3 {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FF4800;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 0;
}

.legal-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content strong {
    font-weight: 700;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .header-content {
        padding-top: 8px;
        position: relative;
    }

    .logo {
        padding-left: 20px;
    }

    .logo img {
        height: 16px;
    }

    .burger-menu {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-toggle:checked ~ .header-nav {
        max-height: 500px;
    }

    .ecosystem-dropdown {
        width: 100%;
    }

    .ecosystem-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 8px;
        margin-top: 8px;
        display: none;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }

    .ecosystem-dropdown:hover .ecosystem-menu {
        display: block;
    }

    .ecosystem-menu-item {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .ecosystem-menu-item:last-child {
        border-bottom: none;
    }

    .menu-toggle:checked ~ .burger-menu span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .menu-toggle:checked ~ .burger-menu span:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .btn-login,
    .btn-signup {
        width: 100%;
        padding: 0;
        height: 48px;
        font-size: 16px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-login {
        background: #fff;
        color: #FF4800;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-signup {
        background: #FF4800;
        color: #fff;
    }

    .theme-toggle {
        width: 100%;
        height: 48px;
        border-radius: 0;
        border: none;
    }

    .hero-video-container {
        padding: 0;
        border-radius: 0;
        aspect-ratio: auto;
        height: 60vh;
    }

    .hero-logo {
        font-size: 20px;
        margin-bottom: 25px;
        gap: 5px;
    }

    .hero-logo .mask-6 {
        width: 3px;
    }

    .hero-logo .mask-20 {
        width: 10px;
    }

    .hero {
        padding: 0 0 50px;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: 0;
        margin-bottom: 32px;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 20px;
        max-width: 700px;
    }

    .btn-secondary {
        padding: 10px 28px;
        font-size: 14px;
    }

    .value-word {
        font-size: 36px;
        -webkit-text-stroke: 1px #FF4800;
        text-stroke: 1px #FF4800;
        letter-spacing: 0;
    }

    .value-tooltip {
        width: 260px;
        padding: 16px;
    }

    .tooltip-text {
        font-size: 14px;
    }

    .author-photo {
        width: 232px;
        height: 151px;
        border-radius: 80px;
    }

    .metrics {
        padding: 60px 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 500px;
    }

    .metric-item {
        text-align: center;
    }

    .metric-item:nth-child(odd) {
        text-align: center;
    }

    .metric-value {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .metric-label {
        font-size: 13px;
        letter-spacing: 0.15em;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 0;
    }

    .section-text {
        font-size: 16px;
    }

    .ecosystem {
        padding: 90px 0;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        max-width: 100%;
    }

    .ecosystem-grid-top {
        margin-bottom: 30px;
    }

    .ecosystem-grid-bottom {
        margin-top: 30px;
    }

    .ecosystem-title {
        margin: 50px 0;
    }

    .ecosystem-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .ecosystem-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .ecosystem-content {
        text-align: center;
    }

    .ecosystem-name {
        font-size: 11px;
        line-height: 1;
    }

    .ecosystem-desc {
        font-size: 10px;
        line-height: 1.3;
        margin-top: 8px;
    }

    .milestones-content {
        max-width: 100%;
        padding-left: 0;
    }

    .milestones-photo {
        position: static;
        max-width: 200px;
        margin: 0 auto;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline-item {
        padding-left: 0;
        margin-top: 30px;
    }

    .timeline-year {
        position: static;
        text-align: left;
        font-size: 14px;
        margin-bottom: 12px;
        width: auto;
    }

    .timeline-content {
        padding-left: 0;
    }

    .timeline-content li {
        padding-left: 20px;
        position: relative;
    }

    .timeline-content li::before {
        left: 0;
    }

    .vision {
        padding: 60px 0;
    }

    .vision-quote {
        font-size: 16px;
        letter-spacing: 0;
        line-height: 1.3;
    }

    .author-name {
        font-size: 16px;
        letter-spacing: 0;
    }

    .author-title {
        font-size: 12px;
        letter-spacing: 0.14em;
    }

    .global {
        padding: 90px 0;
    }

    .global-map-container {
        display: flex;
        flex-direction: column;
    }

    .global-text {
        position: static;
        padding: 20px;
    }

    .global-title {
        font-size: 20px;
    }

    .country-item {
        font-size: 12px;
        padding: 2px 8px;
    }

    .security {
        padding: 90px 0;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .security-name {
        font-size: 16px;
    }

    .security-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .milestones {
        padding: 90px 0;
    }

    .timeline {
        margin-top: 40px;
        padding-left: 0;
    }

    .timeline-item {
        padding-left: 0;
        margin-bottom: 35px;
    }

    .timeline-year {
        font-size: 16px;
        position: static;
        text-align: left;
        margin-bottom: 12px;
        width: auto;
    }

    .timeline-content {
        padding-left: 0;
    }

    .timeline-content li {
        padding-left: 20px;
        position: relative;
    }

    .timeline-content li::before {
        left: 0;
    }

    .timeline-content {
        font-size: 14px;
    }

    .partners {
        padding: 90px 0;
    }

    .news {
        padding: 90px 0;
    }

    .news-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
        margin: 60px 0 0;
        width: 100%;
        box-sizing: border-box;
    }

    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 16px;
    }

    .news-content {
        padding: 12px 0 0;
    }

    .news-image {
        border-radius: 4px;
    }

    .news-source {
        font-size: 14px;
    }

    .news-date {
        font-size: 11px;
    }

    .news-desc {
        font-size: 14px;
    }

    .news-image {
        border-radius: 30px 30px 0 0;
        padding-bottom: 89.09%; /* 550x490 aspect ratio */
    }

    .footer {
        padding: 90px 0 48px;
    }

    .footer-title {
        font-size: 40px;
        letter-spacing: 0;
        line-height: 1.05;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    body {
        padding-top: 55px;
    }

    .header-nav {
        top: 55px;
    }

    .logo {
        padding-left: 16px;
    }

    .logo img {
        height: 14px;
    }

    .burger-menu {
        padding-right: 16px;
    }

    .hero-video-container {
        padding: 0;
        border-radius: 0;
        aspect-ratio: auto;
        height: 60vh;
    }

    .btn-login,
    .btn-signup {
        height: 46px;
        font-size: 15px;
    }

    .burger-menu {
        padding-right: 16px;
    }

    .burger-menu span {
        width: 22px;
        height: 2.5px;
    }

    .header-nav {
        top: 55px;
    }

    .hero-logo {
        font-size: 18px;
        margin-bottom: 20px;
        letter-spacing: 0;
        gap: 3px;
    }

    .hero-logo .mask-6 {
        width: 2px;
    }

    .hero-logo .mask-20 {
        width: 7px;
    }

    .hero {
        padding: 0 0 40px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 0;
        margin-bottom: 28px;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 95%;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
        max-width: 100%;
    }

    .ecosystem-grid-top {
        margin-bottom: 40px;
    }

    .ecosystem-grid-bottom {
        margin-top: 40px;
    }

    .ecosystem-title {
        margin: 60px 0;
    }

    .ecosystem-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .ecosystem-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .ecosystem-content {
        text-align: center;
    }

    .ecosystem-name {
        font-size: 13px;
        line-height: 1;
    }

    .ecosystem-desc {
        font-size: 12px;
        line-height: 1.3;
        margin-top: 10px;
    }

    .value-word {
        font-size: 28px;
        -webkit-text-stroke: 1px #FF4800;
        text-stroke: 1px #FF4800;
        letter-spacing: 0;
    }

    .value-tooltip {
        width: 240px;
        padding: 14px;
    }

    .tooltip-text {
        font-size: 13px;
    }

    .author-photo {
        width: 200px;
        height: 130px;
        border-radius: 80px;
    }

    .metrics {
        padding: 60px 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .metric-item {
        text-align: center;
    }

    .metric-item:nth-child(odd) {
        text-align: center;
    }

    .metric-value {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .metric-label {
        font-size: 12px;
        letter-spacing: 0.14em;
    }

    .mission,
    .ecosystem,
    .vision,
    .global,
    .security,
    .milestones,
    .partners,
    .news {
        padding: 60px 0;
    }

    .section-title {
        font-size: 20px;
        letter-spacing: 0;
    }

    .section-text {
        font-size: 14px;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
        max-width: 900px;
    }

    .ecosystem-grid-top {
        margin-bottom: 50px;
    }

    .ecosystem-grid-bottom {
        margin-top: 50px;
    }

    .ecosystem-title {
        margin: 75px 0;
    }

    .ecosystem-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .ecosystem-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .ecosystem-content {
        text-align: center;
    }

    .ecosystem-name {
        font-size: 16px;
        line-height: 1;
    }

    .ecosystem-desc {
        font-size: 14px;
        line-height: 1.2;
        margin-top: 10px;
    }

    .vision-quote {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 1.3;
    }

    .author-name {
        font-size: 18px;
        letter-spacing: 0;
    }

    .author-title {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .global-map-container {
        display: flex;
        flex-direction: column;
    }

    .global-text {
        position: static;
        padding: 15px;
    }

    .global-title {
        font-size: 16px;
    }

    .country-item {
        font-size: 10px;
        padding: 1px 6px;
    }

    .news-grid {
        margin: 60px 0 0;
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .news-item {
        flex: 0 0 260px;
        padding: 12px;
    }

    .news-image {
        border-radius: 3px;
    }

    .footer {
        padding: 60px 0 36px;
    }

    .footer-title {
        font-size: 32px;
        letter-spacing: 0;
        line-height: 1.05;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding: 0 16px;
    }

    .footer-copyright,
    .footer-links {
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .burger-menu {
        display: none !important;
    }

    .header-nav {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        max-height: none !important;
        background: transparent !important;
    }
}

@media (min-width: 1024px) {
    body {
        padding-top: 70px;
    }

    .header-content {
        padding-top: 10px;
    }

    .logo {
        padding-left: 20px;
    }

    .logo img {
        height: 22px;
    }

    .header-nav {
        padding-right: 20px;
    }

    .btn-login,
    .btn-signup {
        padding: 0 24px;
        height: 40px;
        font-size: 18px;
    }

    .hero {
        padding: 0 0 100px;
    }

    .hero-video-container {
        padding: 15px;
        border-radius: 30px;
        height: 540px;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        aspect-ratio: auto;
    }

    .hero-video {
        border-radius: 16px;
    }

    .hero-logo {
        font-size: 32px;
        margin-bottom: 45px;
        letter-spacing: 0;
        gap: 5px;
    }

    .hero-logo .mask-6 {
        width: 4px;
    }

    .hero-logo .mask-20 {
        width: 14px;
    }

    .hero-title {
        font-size: 100px;
        letter-spacing: 0;
        margin-bottom: 50px;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 28px;
        max-width: 900px;
        line-height: 1.5;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px 30px;
        max-width: 1400px;
    }

    .ecosystem-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .ecosystem-content {
        text-align: left;
    }

    .ecosystem-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 0;
    }

    .ecosystem-name {
        font-size: 16px;
        line-height: 1;
    }

    .ecosystem-desc {
        font-size: 14px;
        line-height: 1.2;
        margin-top: 10px;
    }

    .ecosystem-center-title {
        font-size: 36px;
        max-width: 430px;
    }

    .ecosystem-pos-1 .ecosystem-line,
    .ecosystem-pos-5 .ecosystem-line {
        height: 280px;
    }

    .ecosystem-pos-1 .ecosystem-card {
        margin-top: 290px;
    }

    .ecosystem-pos-5 .ecosystem-card {
        margin-top: 290px;
    }

    .ecosystem-pos-2 .ecosystem-line,
    .ecosystem-pos-4 .ecosystem-line,
    .ecosystem-pos-6 .ecosystem-line,
    .ecosystem-pos-8 .ecosystem-line {
        height: 190px;
    }

    .ecosystem-pos-2 .ecosystem-card,
    .ecosystem-pos-4 .ecosystem-card,
    .ecosystem-pos-6 .ecosystem-card,
    .ecosystem-pos-8 .ecosystem-card {
        margin-top: 200px;
    }

    .ecosystem-pos-3 .ecosystem-line,
    .ecosystem-pos-7 .ecosystem-line {
        height: 240px;
    }

    .ecosystem-card {
        max-width: 210px;
    }

    .ecosystem-icon {
        width: 76px;
        height: 76px;
    }

    .ecosystem-name {
        font-size: 14px;
    }

    .ecosystem-desc {
        font-size: 13px;
    }

    .milestones-content {
        max-width: 900px;
        padding-left: 80px;
    }

    .value-word {
        font-size: 72px;
        -webkit-text-stroke: 1px #FF4800;
        text-stroke: 1px #FF4800;
        letter-spacing: 0;
    }

    .author-photo {
        width: 350px;
        height: 227.5px;
        border-radius: 80px;
    }

    .security-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px 40px;
    }

    .security-name {
        font-size: 18px;
    }

    .security-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .global-text {
        bottom: 30px;
        left: 30px;
    }

    .global-title {
        font-size: 36px;
    }

    .country-list {
        max-width: 35%;
    }

    .country-item {
        font-size: 15px;
        padding: 3px 10px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 80px;
        max-width: 900px;
    }

    .metric-value {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .metric-label {
        font-size: 16px;
        letter-spacing: 0.18em;
        line-height: 1.4;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: 0;
    }

    .section-text {
        font-size: 20px;
    }

    .vision-quote {
        font-size: 28px;
        max-width: 1100px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .author-name {
        font-size: 32px;
        letter-spacing: 0;
    }

    .author-title {
        font-size: 14px;
        letter-spacing: 0.14em;
    }


    .timeline {
        max-width: 1000px;
        padding-left: 100px;
    }

    .timeline-item {
        padding-left: 40px;
        margin-bottom: 45px;
    }

    .timeline-year {
        font-size: 20px;
        left: -100px;
    }

    .timeline-content li::before {
        left: -20px;
    }

    .timeline-content {
        font-size: 17px;
    }

    .news-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 30px;
    }

    .news-item {
        padding: 24px;
    }

    .news-source {
        font-size: 16px;
    }

    .news-date {
        font-size: 13px;
    }

    .news-desc {
        font-size: 16px;
    }

    .footer-title {
        font-size: 100px;
        letter-spacing: 0;
        line-height: 1.05;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: flex-end;
        padding: 0 20px;
    }
}

@media (min-width: 1440px) {
    body {
        padding-top: 75px;
    }

    .container {
        max-width: 1360px;
    }

    .logo {
        padding-left: 20px;
    }

    .logo img {
        height: 24px;
    }

    .header-nav {
        padding-right: 20px;
    }

    .btn-login,
    .btn-signup {
        padding: 0 24px;
        height: 40px;
        font-size: 18px;
    }

    .hero-video-container {
        border-radius: 30px;
    }

    .hero-video {
        border-radius: 16px;
    }

    .hero-logo {
        font-size: 48px;
        margin-bottom: 50px;
        letter-spacing: 0;
    }

    .hero-logo .mask-6 {
        width: 6px;
    }

    .hero-logo .mask-20 {
        width: 20px;
    }

    .hero-title {
        font-size: 116px;
        letter-spacing: 0;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 36px;
        max-width: 630px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 48px;
        letter-spacing: 0;
        line-height: 1;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 60px;
        max-width: 800px;
    }

    .metric-value {
        font-size: 56px;
        margin-bottom: 16px;
    }

    .metric-label {
        font-size: 16px;
    }

    .mission .section-title,
    .mission .section-text {
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }

    .mission .section-text {
        font-size: 28px;
        line-height: 1;
    }

    .security .section-title,
    .security .section-text {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .security .section-text {
        font-size: 28px;
        line-height: 1;
    }

    .value-word {
        font-size: 116px;
        -webkit-text-stroke: 1px #FF4800;
        text-stroke: 1px #FF4800;
        letter-spacing: 0;
    }

    .mission-values {
        gap: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .value-word:nth-child(1) {
        padding-left: 20px;
    }

    .value-word:nth-child(2) {
        padding-left: 20px;
        padding-right: 20px;
    }

    .value-word:nth-child(3) {
        padding-right: 20px;
    }

    .value-tooltip {
        width: 310px;
        padding: 20px;
    }

    .tooltip-text {
        font-size: 16px;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 30px;
        max-width: 1360px;
    }

    .ecosystem-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .ecosystem-content {
        text-align: left;
    }

    .ecosystem-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0;
    }

    .ecosystem-name {
        font-size: 20px;
        line-height: 1;
    }

    .ecosystem-desc {
        font-size: 16px;
        line-height: 1;
        margin-top: 12px;
    }

    .vision-quote {
        font-size: 38px;
        max-width: 1280px;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .author-name {
        font-size: 48px;
        letter-spacing: 0;
    }

    .author-title {
        font-size: 16px;
        letter-spacing: 0.18em;
    }

    .author-photo {
        width: 400px;
        height: 260px;
        border-radius: 80px;
    }

    .global-text {
        bottom: 40px;
        left: 40px;
    }

    .global-title {
        font-size: 24px;
    }

    .country-list {
        max-width: 30%;
    }

    .country-item {
        font-size: 17px;
        padding: 3.5px 12px;
    }


    .ecosystem-title-wrapper {
        margin: 60px 0;
        gap: 20px;
    }

    .ecosystem-arrow {
        display: none;
    }

    .security-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px 40px;
    }

    .security-name {
        font-size: 24px;
    }

    .security-desc {
        font-size: 16px;
        line-height: 1.5;
    }

    .news-source {
        font-size: 18px;
        letter-spacing: 0;
    }

    .news-desc {
        font-size: 16px;
        line-height: 1.5;
    }

    .milestones-content {
        max-width: 1000px;
        padding-left: 120px;
    }

    .timeline {
        padding-left: 120px;
    }

    .timeline::before {
        left: 100px;
        width: 1px;
    }

    .timeline-item {
        padding-left: 40px;
        margin-bottom: 50px;
    }

    .timeline-year {
        font-size: 24px;
        left: -120px;
        width: 80px;
    }

    .timeline-content li::before {
        left: -20px;
    }

    .footer-title {
        font-size: 116px;
        letter-spacing: 0;
        line-height: 1.05;
    }

    .footer-bottom {
        justify-content: space-between;
        align-items: flex-end;
    }

    .footer-copyright,
    .footer-links {
        font-size: 14px;
    }
}
