/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    /* Colors */
    --PrimaryColor: #3076FF;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'DM Sans', sans-serif;
    --section-pad: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

body {
    font-family: var(--font-sans);
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: #1C1C20;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.6rem;font-family: "Poly", serif;
}


.same-heading h2 .highlight{color: var(--PrimaryColor); font-weight: 600;}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #FFFFFFB2;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F5F5F5;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  color: #C7AC7F;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 9999px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #1C1C20;
    border: solid 1px #C7AC7F85;
    color: #C7AC7F85;
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
background: #1C1C20;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
    background: #1C1C20;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}

.header .nav-content {
    display: flex;
    align-items: center;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
}
.header .nav-links .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--WhiteColor);
    padding: 0.2rem;
}

.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}
.header .nav-links .btn{margin-left: 2rem;}



.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}
/* =========================================
   2. HERO
   ========================================= */


.hero {
 padding: 5rem 0;
   display: flex; align-items: center;text-align: center;
}
.hero .hero-content h3{
    font-size:1.8rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--WhiteColor);
}

.hero .hero-content h1 {
    font-size:2.6rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--WhiteColor);
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}
.primary-text{color: var(--PrimaryColor);  font-family: "Poly", serif;}

.hero .hero-content h1 strong{  font-weight: 600;}
.hero .hero-content .globe-img{margin-top: 3rem;}
.hero .hero-content .globe-img{position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; width: 100vw; overflow: hidden;}
.hero .hero-content .globe-img canvas{display: block; width: 100%; min-height: 380px;}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}



/* .origin-section{border-top: solid 1px #C7AC7F1F;} */


.holding-company .shareholders-section{margin-top: 2rem;}
.holding-company .title {
  font-size: 1.1rem;
  color: #C7AC7F;
}

.holding-company .share-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.holding-company .share-list li {
  padding:0.5rem 0.5rem 0.5rem 2rem;  font-size: 1rem;
  position: relative; color: #FFFFFFCC;
}
.holding-company .share-list li .circle-icon{position: absolute; left: 0; top: 0.5rem;}
.holding-company .share-list li .circle-icon svg {
  width: 1rem;
  height: 1rem;
  color: #C7AC7F;

}

.border-top-section{  position: relative;}
.border-top-section:before{position: absolute; left: 0; content: ''; right: 0; top: 0; width: 85%; margin: 0 auto; height: 1px; background: #C7AC7F1F;}


.structured-section .blue-text{color: #3076FF;}



.benefits-section .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-section .benefit-item {
  border: 0.1rem solid #C7AC7F6B;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #1C1C20;
  transition: 0.3s ease;
}

.benefits-section .benefit-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.benefits-section .small {
  font-size: 0.8rem;
  color: #C7AC7F;
  margin-bottom: 0.5rem;
}

.benefits-section h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* Layer Cards */
.benefits-section .layer-cards-row {
    margin-top: 3rem;
}

.benefits-section .layer-card {
    border: 1px solid #C7AC7F30;
    border-radius: 12px;
    padding: 2rem 1.8rem;
    background: #1C1C20;
    text-align: center;
    height: 100%;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.benefits-section .layer-card:hover {
    border-color: #C7AC7F80;
    background: rgba(255, 255, 255, 0.05);
}

.benefits-section .layer-card .layer-card-icon {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7AC7F;
}

.benefits-section .layer-card .layer-card-icon svg {
    width: 2rem;
    height: 2rem;
}

.benefits-section .layer-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #C7AC7F;
    margin-bottom: 0.8rem;
    font-family: "Poly", serif;
}

.benefits-section .layer-card p {
    font-size: 0.95rem;
    color: #FFFFFFB2;
    line-height: 1.6;
    margin: 0;
}


.footer{text-align: center; padding: 4rem 0 1rem;}
.footer .footer-logo{display: inline-block; margin-bottom: 2rem;}
.footer p{    font-size: 0.9rem; color: #FFFFFFB2;    line-height: 1.7;}


.hero .hero-content .globe-img:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, #1c1c20, transparent);
    content: '';
    height: 150px;
}
