* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #031005;
    color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: all 0.3s ease-in-out;
}

li {
    list-style: none;
}

.container {
    width: 1280px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.d_flex {
    display: flex;
    align-items: center;
}

.align_center {
    align-items: center;
}

.justify_between {
    justify-content: space-between;
}

.content_center {
    text-align: center;
}

.col_100 {
    width: 100%;
}

.col_50 {
    width: 50%;
}

.col_40 {
    width: 40%;
}

.col_33 {
    width: 33.33%;
}

.col_30 {
    width: 30%;
}

.logo ul li {
    margin: 0 15px;
}

.logo ul li a,
.footer_link ul li a,
.mobile_sidebar ul li a {
    text-decoration: none;
}

.logo ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.logo ul li a:hover,
.footer_link ul li a:hover,
.text_link:hover {
    color: #0EC824;
}

.hero_sec {
    background-color: #031005;
    background-image: linear-gradient(180deg, rgba(3, 16, 5, 0.76) 0%, rgba(3, 16, 5, 0.96) 100%), url("../assets/images/hero-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px 20px 80px 20px;
    min-height: 100vh;
}

.layer_blur {
    background: rgba(3, 16, 5, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    transition: all 0.4s ease;
    z-index: 999;
}

.layer_blur.scrolled {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.small_text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4C6F57;
}

.title_text {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

.title_text span {
    color: #0EC824;
}

.paragraph_text {
    color: #BEC0BE;
    line-height: 1.6;
    font-weight: 400;
    font-size: 18px;
}

.primary_button_green {
    border: 0;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0EC824;
    padding: 0.85rem 1.6rem;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.primary_button_green:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 24px rgba(14, 200, 36, 0.28);
}

.secondary_button,
.text_link {
    color: #d8e6db;
    text-decoration: none;
}

.secondary_button {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    padding: 0.85rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
}

.secondary_button:hover {
    border-color: rgba(14, 200, 36, 0.45);
    color: #ffffff;
}

.main_content {
    padding: 150px 0 0 0;
}

.hero_layout {
    gap: 36px 0;
}

.hero_copy {
    padding-right: 32px;
}

.scroll_reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.scroll_reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero_copy .paragraph_text {
    max-width: 600px;
}

.hero_actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.quick_info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.info_chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
    padding: 12px 16px;
    border-radius: 999px;
    color: #d8e6db;
    font-size: 14px;
}

.hero_socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero_socials a {
    color: #95a699;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.hero_socials a:hover {
    color: #ffffff;
    border-bottom-color: #0EC824;
}

.ambassador_card,
.location_card,
.meeting_card,
.meeting_form,
.photo_card,
.foundation_value_box,
.real_token_box,
.investment_engine {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.ambassador_card {
    background: linear-gradient(180deg, rgba(12, 25, 16, 0.96) 0%, rgba(6, 18, 10, 0.98) 100%);
    border-radius: 28px;
    overflow: hidden;
    max-width: 560px;
    margin-left: auto;
}

.ambassador_media {
    aspect-ratio: 4 / 4.1;
    overflow: hidden;
}

.ambassador_media img,
.photo_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambassador_meta {
    padding: 26px;
}

.card_eyebrow {
    color: #79c889;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ambassador_meta h3,
.location_copy h3,
.meeting_card h3 {
    font-size: 32px;
    margin: 0;
}

.meta_list {
    padding: 0;
    margin: 24px 0 0 0;
}

.meta_list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #d6dfd7;
    font-size: 14px;
}

.meta_list li span {
    color: #7f9084;
    font-weight: 700;
    min-width: 70px;
}

.meta_list li a {
    color: #ffffff;
    text-decoration: none;
    text-align: right;
}

.co_founder_sec,
.gallery_section {
    background-color: #FAFFFB;
    padding: 90px 0;
}

.ambassador_story {
    gap: 32px 0;
}

.founder_text {
    padding-right: 24px;
}

.founder_text .small_text,
.gallery_copy .small_text,
.core_values .small_text,
.products_title .small_text {
    color: #079417;
}

.founder_text .title_text,
.gallery_copy .title_text,
.core_values .title_text {
    color: #101512;
    margin-top: 8px;
}

.founder_text .paragraph_text,
.gallery_copy .paragraph_text,
.core_values .paragraph_text {
    color: #444644;
}

.location_card {
    background: linear-gradient(180deg, #0b0f0c 0%, #121f15 100%);
    border-radius: 28px;
    padding: 0;
    margin-left: auto;
    overflow: hidden;
}

.location_map {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.location_map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.05) brightness(0.65) sepia(0.3) hue-rotate(40deg) saturate(0.85);
}

.map_tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 17, 9, 0.18) 0%, rgba(4, 20, 8, 0.48) 100%);
    pointer-events: none;
}

.location_copy {
    padding: 30px 34px 34px 34px;
}

.location_actions,
.gallery_actions,
.meeting_actions,
.meeting_links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.location_actions {
    margin-top: 22px;
}

.core_values {
    background-color: #FAFFFB;
    padding: 0 0 90px 0;
}

.foundation_value_box {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 22px;
    margin: 12px;
}

.foundation_value_box h3 {
    font-size: 22px;
    color: #0B0B0B;
    margin: 0 0 12px 0;
}

.foundation_value_box .paragraph_text {
    font-size: 15px;
    line-height: 1.65;
}

.m_t {
    margin-top: 16px;
}

.investment_engine {
    background-color: #0B0B0B;
    border-radius: 24px;
    padding: 32px;
    margin: 12px;
    min-height: 100%;
}

.investment_engine h3 {
    color: #21AE38;
    text-align: left;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.investment_engine p {
    text-align: left;
}

.real_token_box {
    background-color: #D5F2D4;
    padding: 28px;
    margin: 12px;
    border-radius: 24px;
    min-height: 248px;
}

.real_token_box h3 {
    font-size: 22px;
    margin: 0 0 14px 0;
    color: #133917;
    font-weight: 700;
}

.real_token_box .paragraph_text {
    font-size: 16px;
    color: #556458;
}

.dark_box {
    background-color: #0B0B0B;
}

.dark_box h3 {
    color: #21AE38;
}

.dark_box .paragraph_text {
    color: #CCD4CD;
}

.gallery_copy {
    padding-right: 28px;
}

.gallery_actions {
    margin-top: 26px;
}

.photo_grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
}

.photo_card {
    background-color: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    min-height: 320px;
}

.photo_card.large {
    min-height: 540px;
}

.security_sec {
    background-color: #010E05;
    padding: 90px 0;
}

.products_title {
    max-width: 760px;
}

.products_title .title_text {
    margin-top: 8px;
}

.booking_layout,
.meeting_layout {
    margin-top: 42px;
    gap: 28px;
    align-items: stretch;
}

.booking_layout>.col_50,
.meeting_layout>.col_50 {
    width: calc(50% - 20px);
}

.booking_info_card {
    background: linear-gradient(180deg, rgba(10, 26, 13, 0.98) 0%, rgba(5, 14, 8, 0.98) 100%);
    border-radius: 30px;
    padding: 32px;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.booking_info_card h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1.12;
}

.booking_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.booking_tags span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
    color: #d8e6db;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
}

.booking_points {
    margin-top: 18px;
    margin-bottom: 22px;
}

.booking_links,
.booking_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.booking_actions {
    margin-top: 24px;
}

.meeting_card {
    background: linear-gradient(180deg, rgba(10, 26, 13, 0.98) 0%, rgba(5, 14, 8, 0.98) 100%);
    border-radius: 30px;
    padding: 34px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.meeting_card h3 {
    font-size: 38px;
    line-height: 1.12;
    margin: 0;
}

.meeting_points {
    display: grid;
    gap: 18px;
    margin: 28px 0;
    flex: 1;
}

.meeting_point {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meeting_point h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #ffffff;
}

.meeting_point .paragraph_text {
    margin: 0;
    font-size: 15px;
}

.meeting_links a {
    color: #ffffff;
    text-decoration: none;
}

.meeting_links {
    margin-top: auto;
    padding-top: 10px;
}

.calendar_hint {
    margin: 16px 0 0 0;
    color: #8e9c91;
    font-size: 13px;
}

body.modal_open {
    overflow: hidden;
}

.meeting_modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.meeting_modal.active {
    display: flex;
}

.meeting_modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}

.meeting_modal_dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(90vh, 920px);
    background: linear-gradient(180deg, rgba(10, 26, 13, 0.98) 0%, rgba(5, 14, 8, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    padding: 28px;
    overflow: hidden;
}

.meeting_modal_close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

.meeting_modal_header {
    padding-right: 54px;
    margin-bottom: 20px;
}

.meeting_modal_header h3 {
    margin: 8px 0 10px 0;
    font-size: 38px;
    line-height: 1.08;
}

.meeting_modal_frame {
    width: 100%;
    height: min(72vh, 760px);
    border: 0;
    border-radius: 24px;
    background: #ffffff;
}

.investing_assetara {
    background-color: #003604;
    padding: 54px 0 74px 0;
}

.investing_assetara_text h2 {
    font-size: 56px;
}

.main_footer {
    padding: 0;
}

.footer_top {
    background-color: #000E02;
    padding: 40px 0 30px 0;
}

.footer_bottom {
    background-color: #191B1A;
    padding: 5px 0;
}

.footer_content .paragraph_text {
    font-size: 14px;
    line-height: 1.7;
    color: #909F94;
    max-width: 900px;
}

.footer_link,
.social_link,
.reg_btn {
    text-align: end;
}

.footer_link ul li,
.social_link ul li {
    display: inline-flex;
    margin: 0 8px;
}

.copyright_year p,
.footer_link ul li a {
    font-size: 12px;
    color: #7D837E;
}

.system p img {
    margin-right: 7px;
}

.system p {
    border: 1px solid #003604;
    padding: 15px 20px;
    font-size: 12px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    color: #D6D8D6;
}

.custom_socials ul {
    padding: 0;
    margin: 0;
}

.custom_socials ul li a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
}

.custom_socials ul li a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.custom_socials ul li a:hover {
    transform: translateY(-5px);
    border-color: #0EC824;
    color: #0EC824;
}

.mobile_toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

.desktop_only {
    display: block;
}

.mobile_btn {
    display: none;
}

.sidebar_overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
}

.mobile_sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: #0B1A0E;
    padding: 40px 20px;
    transition: 0.4s ease;
    z-index: 999;
}

.mobile_sidebar.active {
    left: 0;
}

.mobile_sidebar .sidebar_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px 0 0;
}

.mobile_sidebar .sidebar_logo img {
    max-width: 140px;
}

.mobile_sidebar ul {
    padding: 0;
}

.mobile_sidebar ul li {
    margin: 20px 0;
}

.mobile_sidebar ul li a {
    color: #fff;
    font-size: 16px;
}

.close_btn {
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.68s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll_reveal,
    .scroll_reveal.visible,
    .reveal,
    .reveal.visible {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .container {
        width: 94%;
    }

    .row {
        display: block;
    }

    .layer_blur {
        width: 92%;
        padding: 10px 18px;
    }

    .col_50,
    .col_40,
    .col_33,
    .col_30 {
        width: 100%;
    }

    .mobile_flex {
        display: flex;
        justify-content: space-between;
    }

    .desktop_menu,
    .desktop_only {
        display: none;
    }

    .mobile_toggle {
        display: block;
    }

    .mobile_btn {
        display: inline-flex;
        padding: 8px 14px !important;
        margin: 0 14px 0 0;
    }

    .hero_sec {
        padding: 16px 10px 60px 10px;
    }

    .main_content {
        padding: 120px 0 0 0;
    }

    .title_text,
    .investing_assetara_text h2 {
        font-size: 34px;
        line-height: 1.16;
    }

    .paragraph_text {
        font-size: 16px;
    }

    .hero_copy,
    .founder_text,
    .gallery_copy {
        padding-right: 0;
    }

    .hero_actions,
    .location_actions,
    .gallery_actions,
    .meeting_actions,
    .meeting_links,
    .meeting_intro_actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quick_info,
    .hero_socials {
        gap: 10px;
    }

    .ambassador_card,
    .location_card {
        margin-left: 0;
        margin-top: 24px;
    }

    .location_map {
        height: 260px;
    }

    .co_founder_sec,
    .gallery_section,
    .security_sec,
    .core_values {
        padding: 50px 0;
    }

    .foundation_value_box,
    .investment_engine,
    .real_token_box {
        margin: 14px 0;
        min-height: auto;
    }

    .photo_grid,
    .form_grid {
        grid-template-columns: 1fr;
    }

.booking_layout > .col_50,
.meeting_layout > .col_50 {
    width: 100%;
}

    .photo_card,
    .photo_card.large {
        min-height: 280px;
    }

.booking_info_card {
    background: linear-gradient(180deg, rgba(10, 26, 13, 0.98) 0%, rgba(5, 14, 8, 0.98) 100%);
    border-radius: 30px;
    padding: 32px;
    height: 100%;     
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    box-sizing: border-box; 
}

    .booking_info_card h3,
    .meeting_modal_header h3 {
        font-size: 31px;
    }

    .meeting_modal {
        padding: 12px;
    }

    .meeting_modal_frame {
        height: 68vh;
    }

    .system,
    .social_link,
    .footer_link {
        text-align: left;
    }

    .mobile_left,
    .mobile_right {
        width: 100%;
    }

    .footer_link ul,
    .custom_socials ul {
        padding: 0;
    }

     .booking_info_card {
        height: auto;
        min-height: unset;
    }

    .meeting_modal {
        padding: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        width: 92%;
    }

    .layer_blur {
        width: 95%;
    }

    .title_text,
    .investing_assetara_text h2 {
        font-size: 40px;
    }

    .paragraph_text {
        font-size: 16px;
    }

    .hero_layout,
    .ambassador_story,
    .booking_layout {
        display: flex;
        gap: 24px 0;
    }

    .photo_card.large {
        min-height: 420px;
    }

    .meeting_modal_dialog {
        width: min(94vw, 1120px);
    }

    .meeting_modal_frame {
        height: 70vh;
    }
}
