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

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    max-width: 1300px;
    margin: 0 auto;
    width: calc(100% - 8rem);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    color: #d64040;
    font-size: 1.8rem;
}

.logo-text {
    color: #000;
}

.logo-text span {
    color: #d64040;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d64040;
}

.get-started-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.get-started-btn:hover {
    background: #333;
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

html {
    overflow-y: scroll;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.close-menu-btn {
    background: none;
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}

.close-menu-btn:hover {
    background: #f5f5f5;
}

.mobile-nav-menu {
    list-style: none;
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu a {
    display: block;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mobile-nav-menu a:hover {
    color: #d64040;
    background: #f9f9f9;
}

.mobile-get-started-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    margin: 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: calc(100% - 3rem);
}

.mobile-get-started-btn:hover {
    background: #333;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    background: #fff;
    min-height: calc(100vh - 80px);
    max-width: 1300px;
    margin: 0 auto;
    width: calc(100% - 8rem);
}

.hero-content {
    padding-right: 2rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat-highlight {
    color: #d64040;
    font-size: 2.5rem;
}

.stat-plus {
    color: #d64040;
    font-size: 1.8rem;
    font-weight: bold;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.book-call-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.book-call-btn:hover {
    background: #333;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.form-title::after {
    content: ".";
    color: #d64040;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #d64040;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(214, 64, 64, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: #d64040;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 64, 64, 0.2);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 0 1.5rem 0;
}

.footer-container {
    max-width: 1300px;
    width: calc(100% - 8rem);
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222;
    align-items: center;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-tagline {
    color: #999;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d64040;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    color: #ccc;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #333;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #fff;
    background: #d64040;
    border-color: #d64040;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-container {
        width: calc(100% - 4rem);
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 6rem 0;
    width: 100%;
}

.cta-container {
    max-width: 1300px;
    width: calc(100% - 8rem);
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.cta-tag {
    color: #d64040;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    color: #ccc;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #d64040;
    color: #fff;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(214, 64, 64, 0.3);
}

.cta-btn:hover {
    background: #fff;
    color: #d64040;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(214, 64, 64, 0.4);
}

/* Media Section */
.media-section {
    background: #fff;
    padding: 4rem 0;
    width: 100%;
}

.media-container {
    max-width: 1300px;
    width: calc(100% - 8rem);
    margin: 0 auto;
    padding: 0;
}

.media-container .section-title {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #000;
}

.media-subtitle {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-container {
        width: calc(100% - 4rem);
    }

    .cta-description {
        font-size: 1rem;
    }
}

.media-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.media-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Documents Section */
.documents-section {
    background: #fff;
    padding: 4rem 0;
    min-height: 100vh;
    width: 100%;
}

.documents-container {
    max-width: 1300px;
    width: calc(100% - 8rem);
    margin: 0 auto;
    padding: 0;
}

.documents-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.documents-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pdf-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pdf-card:hover {
    border-color: #d64040;
    box-shadow: 0 10px 30px rgba(214, 64, 64, 0.1);
    transform: translateY(-5px);
}

.pdf-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d64040;
}

.pdf-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.pdf-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pdf-actions {
    display: flex;
    gap: 1rem;
}

.pdf-link,
.pdf-view {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pdf-link {
    background: #000;
    color: #fff;
}

.pdf-link:hover {
    background: #333;
}

.pdf-view {
    border: 1px solid #d64040;
    color: #d64040;
}

.pdf-view:hover {
    background: #d64040;
    color: #fff;
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.pdf-modal-content {
    position: relative;
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    max-height: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
}

#pdfViewer {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Tokenomics Section */
.tokenomics-section {
    background: #fff;
    padding: 4rem 0;
}

.tokenomics-container {
    max-width: 1300px;
    width: calc(100% - 8rem);
    margin: 0 auto;
    padding: 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.feature-card {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.feature-2 {
    grid-template-columns: 30% 70%;
}

.feature-2 .feature-image {
    order: -1;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-tag {
    font-size: 0.85rem;
    color: #d64040;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-content h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #000;
    margin: 0.5rem 0;
}

.highlight-red {
    color: #d64040;
}

.highlight-purple {
    color: #8b5cf6;
}

.feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.feature-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.feature-2 .feature-image {
    justify-content: flex-start;
}

.feature-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    border: 1px solid #e5e5e5;
    margin: 0 auto;
}

.feature-img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
}

.feature-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    width: fit-content;
    transition: all 0.3s;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-btn:hover {
    background: #333;
}

.feature-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #d64040;
    border-radius: 50%;
    color: #d64040;
    font-weight: bold;
    font-size: 0.9rem;
}

.feature-item strong {
    color: #000;
    font-size: 1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        width: calc(100% - 4rem);
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-highlight {
        font-size: 1.8rem;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-2 .feature-image {
        order: 0;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-2 .feature-image {
        order: 0;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .feature-items {
        grid-template-columns: 1fr;
    }

    .tokenomics-container {
        width: calc(100% - 4rem);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 0;
        width: calc(100% - 4rem);
    }

    .nav-menu {
        display: none;
    }

    .get-started-btn {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .documents-container {
        width: calc(100% - 4rem);
    }

    .mobile-get-started-btn {
        margin-top: auto;
        margin-bottom: 1.5rem;
    }
}

/* Access Modal (Gatekeeper) */
.access-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
    animation: accessFadeIn 0.4s ease;
}

.access-modal.hidden {
    display: none;
}

@keyframes accessFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.access-modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: accessSlideUp 0.5s ease;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
}

@keyframes accessSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.access-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.access-modal-header .logo {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.access-modal-header h2 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.access-modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.access-form .form-group {
    margin-bottom: 1rem;
}

.access-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.access-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fafafa;
}

.access-form input:focus {
    outline: none;
    border-color: #d64040;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(214, 64, 64, 0.1);
}

.access-submit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.access-submit-btn:hover:not(:disabled) {
    background: #d64040;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 64, 64, 0.3);
}

.access-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.access-submit-btn i {
    transition: transform 0.2s ease;
}

.access-submit-btn:hover:not(:disabled) i {
    transform: translateX(4px);
}

.access-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

body.access-locked {
    overflow: hidden !important;
}

@media (max-width: 480px) {
    .access-modal-content {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .access-modal-header h2 {
        font-size: 1.35rem;
    }

    .access-modal-header p {
        font-size: 0.88rem;
    }
}
