/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #5741D8;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Kraken Product';
    src: url('../fonts/KrakenProduct-Regular.eot');
    src: url('../fonts/KrakenProduct-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/KrakenProduct-Regular.woff2') format('woff2'),
        url('../fonts/KrakenProduct-Regular.woff') format('woff'),
        url('../fonts/KrakenProduct-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kraken Brand';
    src: url('../fonts/KrakenBrand-BlackOblique.eot');
    src: url('../fonts/KrakenBrand-BlackOblique.eot?#iefix') format('embedded-opentype'),
        url('../fonts/KrakenBrand-BlackOblique.woff2') format('woff2'),
        url('../fonts/KrakenBrand-BlackOblique.woff') format('woff'),
        url('../fonts/KrakenBrand-BlackOblique.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Kraken Brand';
    src: url('../fonts/KrakenBrand-Bold.eot');
    src: url('../fonts/KrakenBrand-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/KrakenBrand-Bold.woff2') format('woff2'),
        url('../fonts/KrakenBrand-Bold.woff') format('woff'),
        url('../fonts/KrakenBrand-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}





body {
  font-family: 'Kraken Product';
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    -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: #181818;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}


.same-heading h2 .highlight{color: var(--PrimaryColor); font-weight: 600;}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.4rem;
      font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F6F5F9;
}

.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.7rem;
  letter-spacing: 0.1rem;
  color: #868686;
  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: 8px;
    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,
.btn-outline-primary .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,
.btn-outline-primary .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: var(--WhiteColor);
    color: #202020;
    border-color: var(--PrimaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}




.btn-secondary {
    background: #CDDDFF;
    border: solid 1px #CDDDFF;
    color: #565656;
}

.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;

    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
    background: var(--WhiteColor);
    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;
    gap: 4rem;
}

.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(--BlackColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 2rem;}

.header .nav-actions{margin-left: auto;}

.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
   ========================================= */

.bg-gray-equal-space{  background: #F6F5F9; padding: 0 1rem;}

.hero-section {
   padding: 6rem 0 0;

}

.hero-section .badge-title{background: #5741D84D; color: #464646; font-size: 1rem; padding: 0.5rem 1rem; display: inline-block; margin: 0 auto 1rem; border-radius: 50px; text-transform: uppercase;}
.hero-section .hero-content h1 {
    font-size:2.4rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #181818;
}


.hero-section .hero-content p{
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 80%;
    margin:0 auto;
    color: #313132;
}

.hero-section .dashboard-img-bx{   background:radial-gradient(circle at 30% 50%, rgb(27 0 167) 0%, rgba(20, 15, 50, 0.9) 40%, #000 80%); padding-top: 3rem;  margin:3rem auto 0; display: flex; align-items: center; justify-content: center; border-radius: 20px;}
.hero-section .dashboard-img-bx img{width: 100%; max-width: 70%;}







.feature-section .feature-card {
  background: #F6F5F9;
  border-radius: 1rem;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-section .card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--BlackColor);
}

.feature-section .card-text {
  font-size: 1rem;
  color: #595959;
  line-height: 1.5;
  width: 100%;max-width: 80%;
  margin-bottom: 1.2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  padding: 0.3rem 0rem 0.3rem 1.5rem;
  color: #424242;
  position: relative;
}

.feature-list li .icon-bx{position: absolute; left: 0; top:3px;}
.feature-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--PrimaryColor);
}

/* Right side faded icon */
.feature-section .card-bg-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: none;
  /* opacity: 0.15; */
}




/* =========================================
   3. EXPANDED ASSET PAIRS
   ========================================= */

.blue-gradient-bg{ background: radial-gradient(circle at 30% 50%, rgb(27, 0, 167) 0%, rgba(20, 15, 50, 0.9) 40%, #000 80%);}





.asset-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.asset-pairs-section  h6 {
  color: var(--WhiteColor);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* USDC Pairs */
.asset-pairs-section .usdc-pairs-layout {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.asset-pairs-section .ap-from-token {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* .asset-pairs-section .ap-token-icon {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
} */

.asset-pairs-section .ap-token-name {
  color: var(--WhiteColor);
  font-size: 0.85rem;
}

.asset-pairs-section .ap-dashed-line {
  flex: 1;
  text-align: center;
  /* border-top: 2px dashed rgba(255, 255, 255, 0.2); */
  /* min-width: 1.5rem; */
}

.asset-pairs-section .ap-to-tokens {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}

.asset-pairs-section .ap-to-tokens:after{    position: absolute;
    left: -8px;
    right: 0;
    top: -12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    height: 115%;
    content: '';
    width: 50%;}


.asset-pairs-section .ap-token-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--WhiteColor);
  font-size: 0.85rem;
}

.asset-pairs-section .ap-token-icon-sm {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
  flex-shrink: 0;
}

/* CRYPTO Pairs */
.asset-pairs-section .crypto-pairs-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.asset-pairs-section .crypto-pair-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.4rem 0.9rem 0.4rem 0.4rem;
}

.asset-pairs-section .ap-crypto-dashed {
  flex: 1;
  border-top: 2px dashed rgba(255, 255, 255, 0.2);
}



.asset-pairs-section  .ap-token-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.3rem 0.9rem 0.3rem 0.3rem; */
  color: var(--WhiteColor);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.border-radius-20{border-radius: 20px;}
.white-bg{background: var(--WhiteColor);}



.why-section .why-card {
  background: #fff;
  border: 1px solid #e3e3ea;
  border-radius: 0.8rem;
  padding: 2rem 1.2rem;
  height: 100%;
  transition: 0.3s ease;
}

.why-section .why-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
}

.why-section .why-icon {
  margin-bottom: 1.5rem;
}
.why-section .why-icon img{max-height: 5rem;}
.why-section .why-card h6 {
  font-size: 1.2rem;
  /* font-weight: 700; */
  color: var(--BlackColor);
  margin-bottom: 0.5rem;
}

.why-section .why-card p {
      color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}



.mini-feature-section .mini-card {
  background: linear-gradient(145deg, #f9f9fc, #f1f1f6);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);

  /* box-shadow: 
    0 0.3rem 0.8rem rgba(0, 0, 0, 0.04),
    inset 0 0 0.6rem rgba(255, 255, 255, 0.7); */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
    transition: all .2s ease;
}

.mini-feature-section .mini-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.05);
}

.mini-feature-section .mini-card .icon-bx{margin-bottom: 1rem;}
.mini-feature-section .mini-card svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--PrimaryColor);
  margin-bottom: 0.6rem;
}

.mini-feature-section .mini-card h6 {
font-size: 1.2rem;
/* font-weight: 700; */
color: var(--BlackColor);
margin-bottom: 0.5rem;
}

.mini-feature-section .mini-card p {
      color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.trading-section h2{margin: 2.5rem 0;}
.trading-section .btn-outline-primary{background: transparent; color: #FFFFFF99; border-color: #FFFFFF4D;}


.footer .footer-top{padding: 3rem 0;}
.footer .footer-nav{display: flex; align-items: center; justify-content: center; gap: 2.5rem; margin-top:2rem;}
.footer .footer-nav li a{color: #0A0A0A; font-size: 1rem; font-weight: 400; border-bottom: solid 2px transparent;}
.footer .footer-nav li a:hover{color: var(--PrimaryColor); border-color: var(--PrimaryColor);}
.footer .footer-copy{border-top: solid 1px #EAE4E4; padding: 2rem 0; color: #595959;  font-size: 0.9rem;}