@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --black: #000000;
    --white: #FFFFFF;
    --primary: #4F034B;
    --graident: linear-gradient(90deg, #C69B3F 0%, #FBEF9B 50%, #C69B3F 100%);
}

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

body {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}

html {
    scroll-behavior: smooth;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-size: clamp(24px, 2.6vw, 40px);
    font-weight: 600;
}

h2 {
    font-size: clamp(20px, 2.6vw, 36px);
    font-weight: 600;
}

h3 {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
}

h4 {
    font-size: 16px;
    font-weight: 600;
}

/* h5 {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
}

h6 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
} */

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: flex;
}

video,
iframe {
    width: 100%;
}

.container {
    max-width: 1440px;
    width: 94%;
    margin: 0 auto;
}

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

ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
}


/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    height: 48px;
}

.btn-graident-border{
    background: var(--graident);
    border-radius: 10px;
    padding: 1px;
    width: fit-content;
}
.btn-graident-border a{
    color: white;
    background-color: var(--primary);
}

.btn-graident-solid{
    background: var(--primary);
    border-radius: 10px;
    width: fit-content;
    color: var(--white);
}
.solid-btn{
    background-color: var(--primary);
    color: var(--white);
}

.section-spacing {
    margin-bottom: clamp(50px, 10vw, 100px);
}

.graident-text{
    background: var(--graident);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.common-stripe{
    background: var(--graident);
    border-radius: 50px;
    padding: 1px;
    width: fit-content;
    margin: 0 auto 20px;
}
.common-stripe p{
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    margin-bottom: 0 !important;
}

button{
    border: none;
}

.loginbtn-white{
    background-color: #FFF;
    color: var(--primary);
}

/* Header */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

header.header-scrolled{
    background-color: rgba(44, 8, 60, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}
.logo{
    display: flex;
    position: relative;
    z-index: 1005;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.nav-drawer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.main-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
}

.main-menu li a{
    color: var(--white);
}
.header-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-btn form button{
    background-color: #FFF;
    color: var(--primary);
}

/* .logo,
.main-menu,
.header-btn{
    flex: 1;
} */

.mobile-menu-btn,
.nav-drawer-overlay {
    display: none;
}


.hero-banner{
    background-image: url('../images/banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Banner Content */
.banner-stripe{
    background: var(--graident);
    border-radius: 50px;
    padding: 1px;
    width: fit-content;
    margin: 0 auto 20px;
}
.banner-stripe p{
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    background-color: #601c5d;
    margin-bottom: 0 !important;
}
.hero-banner-content h1{
    margin: 0 auto 20px;
    max-width: 600px;
    color: var(--white);
    text-align: center;
}

.hero-banner-content p{
    margin: 0 auto 20px;
    max-width: 600px;
    color: var(--white);
    text-align: center;
}

.banner-btn{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

/* video banner */
.video-banner-content h2,
.video-banner-content p{
    text-align: center;
}

.video{
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.video iframe{
    display: block;
    border-radius: 30px;
}

.video-play-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.play-ripple{
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.5px);
}

.play-ripple-one{
    animation: ripplePulse 2.4s ease-out infinite;
}

.play-ripple-two{
    inset: 20px;
    animation: ripplePulse 2.4s ease-out .45s infinite;
}

.play-ring{
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--graident);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(251, 239, 155, 0.4);
    z-index: 3;
}

.play-core{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: coreBreath 1.7s ease-in-out infinite;
}

.play-triangle{
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid #fdf3ad;
    margin-left: 3px;
}

.video-play-btn:hover .play-ring{
    transform: scale(1.05);
}

.video-play-btn:focus-visible{
    outline: 2px solid #fdf3ad;
    outline-offset: 6px;
    border-radius: 50%;
}

@keyframes ripplePulse{
    0%{
        transform: scale(0.88);
        opacity: 0.2;
    }
    70%{
        transform: scale(1.08);
        opacity: 0.5;
    }
    100%{
        transform: scale(1.16);
        opacity: 0;
    }
}

@keyframes coreBreath{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.08);
    }
    100%{
        transform: scale(1);
    }
}


/* who-choose */
.who-choose-content{
    text-align: center;
    color: var(--white);
}
.who-choose-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.who-choose{
    background-color: var(--primary);
    padding: clamp(50px, 9vw, 100px) 0;
}
.who-choose-col{
    background: var(--graident);
    border-radius: 15px;
    padding: 1px;
}
.who-choose-col-bg{
    background-color: #601c5d;
    padding: clamp(15px, 3vw, 30px);
    border-radius: 15px;
    height: 100%;
}

.who-choose-col-img{
    background: var(--graident);
    border-radius: 10px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.who-choose-col-content{
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.who-choose-col-content p{
    opacity: 0.7;
}

/*  */
.top-performing-content{
    text-align: center;
}

.top-performing-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.top-performing-col{
    background: linear-gradient(280.27deg, #3D3D3D 3.61%, #9C9C9C 123.69%);
    border-radius: 14px;
    padding: 1px;
}

.top-performing-col-bg{
    background: var(--white);
    border-radius: 14px;
    padding: 24px 22px 22px;
    height: 100%;
}

.top-performing-col-content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tag-bg{
    background: linear-gradient(90deg, #3D3D3D 0%, #9C9C9C 100%);
    padding: 1px;
    border-radius: 50px;
    /* display: inline-block; */
    width: fit-content;
}

.ea-tag{
    /* font-size: 20px; */
    /* line-height: 1; */
    font-weight: 500;
    background-color: #E9E9F1;
    width: fit-content;
    border-radius: 50px;
    padding: 10px 6px;
    display: inline-block;
    /* font-size: 10px; */
}



.top-performing-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 12px 16px;
    margin-top: 4px;
}

.stat-item p{
    font-size: 16px;
    line-height: 1.2;
    opacity: 0.7;
}

.stat-value{
    margin-top: 4px;
    color: #4F034B;
}

.stat-danger{
    color: #FE5C5D;
}

.top-performing-btn{
    margin-top: 10px;
    text-align: center;
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    transition: background-color .3s ease;
}

.top-performing-btn:hover{
    background-color: #3d023a;
}

.top-performing-col-content .solid-btn{
    width: 100%;
}

.who-choose-number{
    background: var(--primary);
    width: clamp(40px, 4vw, 60px);
    height: clamp(40px, 4vw, 60px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 20px; */
    color: var(--white);
    /* margin-bottom: 20px; */
}

.who-choose-number p{
    background: var(--graident);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1;
    font-weight: 500;
}


/*  */
.supporte-broker-content{
    text-align: center;
}
.supporte-broker-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* margin-top: 30px; */
}
.supporte-broker-col{
    background: var(--graident);
    padding: 1px;
    border-radius: 10px;
}

.supporte-broker-bg{
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}


.broker-tag{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    margin-top: 10px;
}

.support-btn{
    margin-top: 30px;
}

.support-btn a{
    margin: 0 auto;
}

.btn-outline{
    padding: 1px;
    background: linear-gradient(278.84deg, #3D3D3D 3.53%, #9C9C9C 94.25%);
    border-radius: 10px;
    width: fit-content;
}

.btn-outline a{
    background: #EAECF4;
    width: fit-content;
}

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

.cta-btn{
    margin-top: clamp(15px, 2vw, 30px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 30px);
}

.cta-content-bg{
    background: var(--graident);
    padding: 1px;
    border-radius: 30px;
    border-radius: clamp(14px, 2vw, 30px);
}

.cta-content{
    background-color: #EAECF4;
    padding: clamp(30px, 6vw, 60px) 30px;
    border-radius: clamp(14px, 2vw, 30px);
}

.performing-pairs-text p{
    display: flex;
    justify-content: space-between;
}

.brokers-page .hero-banner{
    height: 420px;
    min-height: 420px;
}

.expert-advisors-page .hero-banner{
    height: 420px;
    min-height: 420px;
}

.expert-advisors-page .hero-banner-content h1{
    margin-bottom: 12px;
}

.expert-advisors-page .hero-banner-content p{
    max-width: 560px;
}

.expert-advisors-page .top-performing{
    margin-top: 0;
}

.expert-advisors-page .top-performing-row{
    margin-top: 16px;
    gap: 16px;
}

.expert-advisors-page .top-performing-col{
    background: #fff;
    padding: 0;
    border: 1px solid #cfcfd6;
    border-radius: 8px;
}

.expert-advisors-page .top-performing-col-bg{
    border-radius: 8px;
    padding: 18px 16px 14px;
}

.expert-advisors-page .top-performing-col-content{
    gap: 10px;
}

.expert-advisors-page .top-performing-col-content > p{
    font-size: 16px;
    color: #2f2f2f;
}

.expert-advisors-page .top-performing-col-content h3{
    /* font-size: 36px; */
    /* line-height: 1; */
    color: #1a1a1a;
}

.expert-advisors-page .tag-bg{
    background: #cacad2;
}

.expert-advisors-page .ea-tag{
    background: #f6f6fb;
    padding: 5px 8px;
    /* font-size: 10px; */
}

.expert-advisors-page .top-performing-stats{
    gap: 8px;
}

.expert-advisors-page .stat-item{
    background: #f1edf5;
    border-radius: 6px;
    padding: 10px;
}

.expert-advisors-page .stat-item p{
    font-size: 13px;
    opacity: .8;
}

.expert-advisors-page .stat-item .stat-value{
    margin-top: 10px;
    /* font-size: 44px; */
    /* line-height: .95; */
}

.expert-advisors-page .performing-pairs-text{
    margin-top: 2px;
}

.expert-advisors-page .performing-pairs-text p{
    font-size: 15px;
    /* line-height: 1.45; */
}

.expert-advisors-page .performing-pairs-text strong{
    font-weight: 600;
}

.expert-advisors-page .top-performing-col-content .solid-btn{
    margin-top: auto;
    width: 100%;
    height: 44px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}

.brokers-page .hero-banner-content h1{
    margin-bottom: 12px;
}

.brokers-page .hero-banner-content p{
    max-width: 520px;
}

.broker-info-list{
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.broker-info-col{
    border-radius: 12px;
}

.broker-info-col .supporte-broker-bg{
    text-align: left;
    padding: 14px 20px;
}

.broker-info-title{
    display: flex;
    /* align-items: center; */
    gap: 8px;
    margin-bottom: 4px;
}

.broker-info-title p{
    color: var(--primary);
}

/* .broker-info-title img{
    width: 16px;
    height: 16px;
} */

.broker-info-title div img{
    max-width: 24px;
}

.broker-info-title strong{
    font-size: 18px;
    color: #1f1f1f;
    margin-bottom: 6px;
    display: inline-block;
}

.broker-requirements{
    margin-top: 8px;
    padding-left: 18px;
}

.broker-requirements li{
    list-style: disc;
    font-size: 13px;
    line-height: 1.55;
    color: #464646;
}


.support-brokers-col-top{
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 20px;
}

.support-brokers-col-detail ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.support-brokers-col-detail ul li:last-child{
    margin-bottom: 0;
}

.support-brokers-col-detail{
    margin-top: 20px;
}

.support-brokers-col-detail p{
    margin-bottom: 10px;
}

.support-brokers-col{
        background: var(--graident);
        padding: 1px; /* creates the outer border */
        border-radius: 10px;
}

.support-brokers-col-bg{
    background-color: var(--white);
    padding: clamp(15px, 3vw, 30px);
    border-radius: 10px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.support-brokers-col-bg{
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.support-brokers-col-bg:hover{
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

.support-brokers-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.broker-btn a{
    width: 100%;
}

.articles-page .hero-banner{
    height: 470px;
}

.articles-page .hero-banner-content p{
    max-width: 680px;
    font-size: 16px;
    line-height: 1.45;
}

.articles-section{
    margin-top: -12px;
}

.articles-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.article-card{
    background: var(--graident);
    border-radius: 12px;
    padding: 1px;
    overflow: hidden;
}

.article-card-bg{
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

/* .article-body{
    background: var(--white);
    border-radius: 0 0 11px 11px;
    padding: 14px;
} */

.article-thumb{
    /* height: 184px; */
    /* border-radius: 10px; */
    /* margin-bottom: 12px; */
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.article-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.date-bg{
    background: #00000050;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 6px 8px;
    border-radius: 5px;
    display: flex;
    backdrop-filter: blur(10px);
}

.article-thumb span{
   background: var(--graident);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 600;
}

.thumb-one{
    background:
        linear-gradient(125deg, rgba(12, 176, 212, .35), rgba(255, 149, 0, .25)),
        radial-gradient(360px 180px at 80% 10%, rgba(255, 122, 32, .38), transparent 70%),
        radial-gradient(320px 180px at 20% 80%, rgba(22, 74, 160, .45), transparent 65%),
        #1f2a38;
}

.thumb-two{
    background:
        linear-gradient(125deg, rgba(180, 152, 119, .5), rgba(83, 66, 49, .2)),
        radial-gradient(340px 180px at 20% 20%, rgba(245, 226, 184, .45), transparent 72%),
        radial-gradient(320px 180px at 80% 75%, rgba(25, 38, 62, .35), transparent 70%),
        #4f5f6f;
}

.thumb-three{
    background:
        linear-gradient(125deg, rgba(190, 215, 235, .45), rgba(54, 66, 86, .2)),
        radial-gradient(300px 170px at 15% 80%, rgba(73, 170, 235, .33), transparent 72%),
        radial-gradient(320px 170px at 80% 20%, rgba(185, 205, 222, .35), transparent 72%),
        #2d3f52;
}

.article-tag{
    width: fit-content;
    color: var(--primary) !important;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    /* margin-bottom: 10px; */
}

.article-body h3{
    font-size: 16px;
    line-height: 1.35;
    color: #151515;
    margin-bottom: 8px;
    font-weight: 600;
}

.article-body p{
    color: #4c4c4c;
    font-size: 13px;
    line-height: 1.45;
}

.article-tag-bg{
    background: var(--graident);
    padding: 1px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 10px;
}

.faq-page .hero-banner{
    height: 420px;
}

.faq-page .hero-banner-content p{
    max-width: 520px;
}

.faq-section{
    margin-top: -12px;
}

.faq-wrap{
    max-width: 980px;
    margin: 0 auto;
}

.faq-group{
    margin-bottom: 28px;
}

.faq-group h3{
    margin-bottom: 14px;
    font-size: 22px;
    color: #171717;
}

.faq-item{
    border: 1px solid #d8b760;
    border-radius: 8px;
    background: var(--white);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary{
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    padding: 12px 42px 12px 14px;
    position: relative;
}

.faq-item summary::-webkit-details-marker{
    display: none;
}

.faq-item summary::after{
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 18px;
    height: 18px;
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: transform .3s ease;
}

.faq-item[open] summary::after{
    transform: translateY(-50%) rotate(180deg);
}

.faq-item .faq-content{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .32s ease, opacity .25s ease;
}

.faq-item[open] .faq-content{
    opacity: 1;
}

.faq-item .faq-content p{
    padding: 0 14px 12px;
    color: #444;
    font-size: 13px;
    line-height: 1.55;
}

/* .ea-list-page .container{
    padding: 0 24px;
} */

.ea-list-page .hero-banner{
    height: 100px;
    min-height: 100px;
    /* margin-top: 82px; */
}

/* .ea-main{
    margin-top: 170px;
} */

.ea-head-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.ea-head-row h1{
    /* font-size: 52px;
    line-height: 1; */
    margin-bottom: 10px;
}

.ea-tags{
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.ea-tags span{
    border: 1px solid #d4d4d4;
    background: #f6f6fb;
    border-radius: 999px;
    font-size: 11px;
    padding: 4px 10px;
    color: #3d3d3d;
}

.ea-subtitle{
    color: #373737;
    font-size: 14px;
}

.ea-stats-row{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 14px;
}

.ea-stat{
    background: #f2edf5;
    border-radius: 8px;
    padding: 14px 16px;
}

.ea-stat p{
    font-size: 13px;
    color: #575757;
}

.ea-stat h3{
    margin-top: 4px;
    font-size: clamp(24px, 2.6vw, 40px);
    color: #1b1b1b;
}

.ea-stat h3.danger{
    color: #ff5c5e;
}

.ea-stat small{
    font-size: 10px;
    color: #727272;
}

.ea-tabs{
    margin-top: 14px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ece2cb;
    padding-bottom: 8px;
}

.ea-tabs span{
    font-size: 13px;
    color: #444;
    cursor: pointer;
    position: relative;
}

.ea-tabs span.active{
    color: #171717;
}

.ea-tabs span.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #d8b760;
}

.ea-layout-grid{
    margin-top: 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.ea-card{
    border: 1px solid #d8b760;
    border-radius: 10px;
    padding: 14px;
    background: #fff;
    margin-bottom: 12px;
}

.ea-card h4{
    font-size: 16px;
    margin-bottom: 10px;
    color: #1d1d1d;
}

.calc-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.calc-hint{
    margin-bottom: 10px;
    font-size: 14px;
    color: #6c6c6c;
}

.calc-btn{
    border: 1px solid #ebe6f3;
    background: #f1eef7;
    color: #434343;
    border-radius: 7px;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 400;
}

.calc-btn.active{
    background: #4f034b;
    color: #fff;
}

.input-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.input-row label{
    font-size: 12px;
    color: #6a6a6a;
}

.input-row input{
    margin-top: 4px;
    width: 100%;
    border: 1px solid #e5e2ec;
    border-radius: 6px;
    padding: 12px;
    background: #f5f3fa;
    font-size: 13px;
}

.kpi-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.kpi{
    background: #f1edf5;
    border-radius: 8px;
    padding: 10px;
}

.kpi p{
    font-size: 12px;
    color: #575757;
}

.kpi h5{
    margin-top: 2px;
    /* font-size: 32px; */
    color: #212121;
}

.period-row{
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.period-row span{
    border: 1px solid #e8e2ef;
    background: #f7f4fb;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
}

.period-row span.active{
    background: #4f034b;
    color: #fff;
}

.sum-row{
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.sum-row div{
    text-align: center;
}

.sum-row p{
    font-size: 12px;
    color: #666;
}

.sum-row h5{
    margin-top: 3px;
    /* font-size: 34px; */
    color: #151515;
}

/* .chart-box{
    margin-top: 10px;
    height: 120px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(79, 3, 75, 0.42), rgba(79, 3, 75, 0.06)),
        linear-gradient(90deg, rgba(255,255,255,.42) 1px, transparent 1px);
    background-size: auto, 32px 100%;
    border: 1px solid #e7deed;
} */

.chart-box img{
    width: 100%;
    margin-top: 12px;
    display: block;
    border-radius: 8px;
}

.info-list li{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.info-list li span{
    color: #676767;
}

.info-list li strong{
    color: #1e1e1e;
}

.followers-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.followers-row div{
    background: #f1edf5;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.followers-row p{
    font-size: 12px;
    color: #666;
}

.followers-row h5{
    /* font-size: 28px; */
    color: #1e1e1e;
}

.broker-mini{
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #eee4cd;
    padding: 8px 0;
}

.broker-mini:last-child{
    border-bottom: 0;
}

.broker-mini span{
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #4f034b;
    color: #f8d889;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.broker-mini p{
    font-size: 13px;
    color: #1e1e1e;
}

.broker-mini small{
    font-size: 10px;
    color: #666;
}

.broker-mini a{
    font-size: 12px;
    color: #4f034b;
    font-weight: 500;
}

.features-list li{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #3d3d3d;
}

.features-list img{
    width: 20px;
    height: 20px;
}

.login-page,
.signup-page{
    min-height: 100vh;
    background-image: url('../images/banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-wrap{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.login-glow{
    position: absolute;
    width: 980px;
    height: 980px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    filter: blur(300px);
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.login-dot{
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(90deg, #c69b3f33 0%, #fbef9b33 50%, #c69b3f33 100%);
    filter: blur(10px);
    right: 23%;
    top: 29%;
}

.login-card-wrap{
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.login-brand{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 56px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    margin-bottom: 28px;
}

.login-brand a{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 42px;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.login-card{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px #ffffff4d;
    padding: 20px 30px;
}

.login-card h1{
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    color: #111;
}

.login-card > p{
    margin-top: 8px;
    text-align: center;
    color: #414141;
    font-size: 14px;
    margin-bottom: 14px;
}

.login-form{
    border-top: 1px solid #dcdcdc;
    padding-top: 16px;
}

.login-form label{
    display: block;
    margin-bottom: 16px;
    position: relative;
}

.login-form label > span{
    display: inline-block;
    position: absolute;
    top: -7px;
    left: 12px;
    background: #fff;
    padding: 0 4px;
    font-size: 12px;
    color: #868686;
}

.login-form input{
    width: 100%;
    border: 1px solid #e3e6f3;
    border-radius: 8px;
    padding: 14px 12px;
    font-size: 14px;
    color: #111;
}

.login-form select{
    width: 100%;
    border: 1px solid #e3e6f3;
    border-radius: 8px;
    padding: 14px 12px;
    font-size: 14px;
    color: #111;
    background: #fff;
}

.password-field button{
    position: absolute;
    right: 8px;
    bottom: 8px;
    border: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
}

.password-field svg{
    width: 20px;
    height: 20px;
    fill: #777;
}

.forgot-link{
    display: block;
    text-align: right;
    font-size: 14px;
    color: #414141;
    margin: -4px 0 12px;
}

.login-submit{
    width: 100%;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 600;
}

.login-divider{
    margin: 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-divider::before,
.login-divider::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #dcdcdc;
}

.login-divider span{
    color: #414141;
    font-size: 12px;
}

.login-google{
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 10px 20px;
    background: #eaecf4;
    color: #50054c;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.login-signup{
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #414141;
}

.login-signup a{
    color: #50054c;
    font-weight: 500;
    font-size: 14px;
}

.signup-card-wrap{
    max-width: 400px;
}

.signup-card{
    padding: 20px 30px;
}

.signup-form{
    padding-top: 14px;
}

.signup-form label{
    margin-bottom: 14px;
}

.signup-form .password-field{
    margin-bottom: 12px;
}

.signup-form .confirm-field{
    margin-bottom: 8px;
}

.signup-phone-row{
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 12px;
    margin-bottom: 14px;
}

.signup-phone-row label{
    margin-bottom: 0;
}

@media (max-width: 560px){
    .signup-phone-row{
        grid-template-columns: 1fr;
    }
}

.agree-text{
    font-size: 12px;
    color: #414141;
    line-height: 1.4;
    margin: 2px 0 10px;
}

.agree-text.form-error{
    color: #dc2626;
}

.agree-text.form-status{
    color: #16a34a;
}

.login-process-page .hero-banner{
    height: 470px;
}

.process-dummy{
    background: #6f6f6f;
    height: 220px;
    display: flex;
    align-items: center;
}

.otp-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 20px;
}

.otp-overlay.active{
    display: flex;
}

.otp-modal{
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 20px #ffffff4d;
    background: #fff;
    padding: 20px;
}

.otp-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otp-head h3{
    font-size: 16px;
    color: #111;
}

.otp-head button{
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: #ececec;
    color: #7c7c7c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-line{
    margin: 12px 0;
    height: 1px;
    background: #dcdcdc;
}

.otp-text{
    text-align: center;
    color: #414141;
    font-size: 14px;
}

.otp-row{
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.otp-box{
    width: 50px;
    height: 50px;
    border: 1px solid #e3e6f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 16px;
}

input.otp-box{
    display: block;
    text-align: center;
    background: #fff;
    opacity: 1;
    outline: none;
}

input.otp-box:focus{
    border-color: #c69b3f;
}

.otp-btn{
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    font-weight: 500;
}

.no-scroll{
    overflow: hidden;
}

.profile-page{
    background: #fff;
    overflow-x: hidden;
}

.profile-layout{
    width: 100vw;
    max-width: none;
    margin: 0;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 250px 1fr;
}

.profile-layout .box-card{
    height: auto;
}

.profile-sidebar{
    border-right: 1px solid #dcdcdc;
    padding: 20px 19px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 822px; */
}

.profile-menu-toggle{
    display: none;
}

.profile-drawer-open,
.profile-drawer-overlay{
    display: none;
}

.profile-drawer-open{
    border: 0;
    background: transparent;
    padding: 0;
    width: 40px;
    height: 40px;
}

.profile-drawer-open span{
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #111;
    display: block;
    transition: transform .2s ease, opacity .2s ease;
}

.profile-mobile-head{
    display: none;
}

.profile-logo{
    font-size: 27px;
    line-height: 40px;
    font-weight: 600;
    color: #4f034b;
}

.profile-logo a{
    color: inherit;
    text-decoration: none;
        font-size: inherit;
    font-weight: inherit;
}

.profile-sep,.line{
    margin: 16px 0;
    height: 1px;
    background: #dcdcdc;
}

.profile-group{
    margin-bottom: 14px;
}

.profile-group h4{
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
}

.profile-link{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 99px;
    color: #414141;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.profile-link-icon{
    width: 20px;
    min-width: 20px;
    text-align: center;
    font-size: 15px;
}

.profile-link-icon img{
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

.profile-link.active{
    background: #4f034b1a;
    color: #4f034b;
}

.profile-user-top{
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4f034b;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-sm{
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.profile-avatar-lg{
    width: 66px;
    height: 66px;
    font-size: 28px;
}

.name{
    font-size: 18px;
    color: #111;
    font-weight: 500;
}

.mail{
    font-size: 12px;
    color: #414141;
}

.logout-link{
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #414141;
}

.logout-link img{
    width: 20px;
    height: 20px;
    display: block;
}

.profile-content{
    padding: 30px 30px 65px;
}

.profile-head h1{
    font-size: 22px;
    line-height: 33px;
    font-weight: 600;
    color: #111;
}

.profile-head p{
    margin-top: 2px;
    color: #414141;
    font-size: 14px;
    line-height: 25px;
}

.warning-card{
    margin-top: 20px;
    border: 1px solid #ff4c4c;
    border-radius: 16px;
    background: #ff4c4c1a;
    padding: 18px;
    display: flex;
    gap: 14px;
}

.warning-icon{
    width: 26px;
    min-width: 26px;
}

.warning-card h3{
    font-size: 16px;
    color: #111;
}

.warning-card p{
    font-size: 12px;
    color: #414141;
    margin-top: 6px;
}

.box-card{
    margin-top: 16px;
    border: 1px solid #c69b3f;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
}

.box-card h3{
    font-size: 16px;
    line-height: 24px;
    color: #111;
}

.account-user{
    margin-top: 8px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.verified{
    margin-top: 4px;
    display: inline-block;
    border-radius: 6px;
    padding: 2px 10px;
    background: var(--graident);
    color: #4f034b;
    font-size: 10px;
    font-weight: 500;
}

.profile-form{
    margin-top: 10px;
}

.profile-form label{
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.profile-form label span{
    position: absolute;
    top: -6px;
    left: 12px;
    background: #fff;
    padding: 0 4px;
    color: #868686;
    font-size: 12px;
}

.profile-form input{
    width: 100%;
    border: 1px solid #e3e6f3;
    border-radius: 8px;
    padding: 14px 12px;
    font-size: 14px;
}

.form-btn{
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.linked-item .name{
    font-size: 14px;
    font-weight: 500;
}

.dashboard-content{
    padding-top: 30px;
}

.dash-stats-grid{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
}

.dash-stat-card{
    border: 1px solid #c69b3f;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.dash-stat-left{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dash-stat-icon{
    width: 24px;
    min-width: 24px;
    text-align: center;
    color: #414141;
}

.dash-stat-icon img{
    width: 24px;
    height: 24px;
    display: block;
}

.dash-stat-left p{
    font-size: 14px;
    color: #414141;
}

.dash-stat-card h3{
    /* font-size: 40px; */
    line-height: 1;
    color: #4f034b;
    font-weight: 600;
}

.dash-panels-grid{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 363px;
    gap: 20px;
    align-items: start;
}

.dash-panel-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-panel-head h3{
    font-size: 16px;
    color: #111;
}

.dash-panel-head a{
    font-size: 12px;
    color: #414141;
}

.dash-empty{
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dash-empty-icon{
    font-size: 24px;
    color: #414141;
    opacity: .9;
}

.dash-empty-icon img{
    width: 24px;
    height: 24px;
    display: block;
}

.dash-empty p{
    font-size: 12px;
    color: #414141;
}

.dash-panel-btn{
    display: flex;
    justify-content: center;
}

.dash-panel-btn .btn{
    padding: 10px 20px;
}

.mycopies-content{
    padding-top: 30px;
}

.mycopies-head-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mycopies-actions{
    display: flex;
    align-items: center;
    gap: 16px;
}

.mycopies-outline-btn{
    border: 1px solid #c69b3f;
    background: #fff;
    color: #111;
}

.mycopies-card{
    margin-top: 20px;
    border: 1px solid #c69b3f;
    border-radius: 16px;
    padding: 20px;
}

.mycopies-tabs{
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.mycopies-tabs button{
    border: 0;
    background: transparent;
    color: #414141;
    font-size: 14px;
    line-height: 25px;
    cursor: pointer;
    padding: 0;
}

.mycopies-tabs button.active{
    color: #4f034b;
    font-weight: 500;
}

.mycopies-empty{
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mycopies-empty-icon{
    font-size: 38px;
    color: #414141;
    line-height: 1;
}

.mycopies-empty-icon img{
    width: 24px;
    height: 24px;
    display: block;
}

.mycopies-empty h3{
    color: #414141;
    /* font-size: 36px; */
    line-height: 1.2;
    font-weight: 500;
}

.mycopies-empty p{
    color: #414141;
    font-size: 14px;
    text-align: center;
}

.mycopies-empty .btn{
    margin-top: 14px;
}

.startcopy-content{
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.startcopy-head-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.startcopy-stepper{
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto;
    align-items: center;
    gap: 0;
}

.startcopy-step{
    text-align: center;
}

.startcopy-step span{
    width: 46px;
    height: 46px;
    margin: 0 auto;
    border-radius: 50%;
    border: 0;
    color: #4f034b;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4f034b1a;
}

.startcopy-step p{
    margin-top: 10px;
    /* font-size: 11px; */
    color: #414141;
    line-height: 1;
}

.startcopy-step.active span{
    background: #4f034b;
    border-color: #4f034b;
    color: #fff;
}

.startcopy-step.active p{
    color: #4f034b;
}

.startcopy-step.current span{
    box-shadow: 0 0 16px 0 #4f034b29;
}

.startcopy-line{
    height: 1px;
    background: #dcdcdc;
    margin-top: -22px;
}

.startcopy-line.active{
    background: #4f034b;
}

.startcopy-card{
    margin-top: 20px;
    border: 1px solid #c69b3f;
    border-radius: 16px;
    padding: 20px;
}

.startcopy-pane{
    display: none;
}

.startcopy-pane.active{
    display: block;
}

.startcopy-pane h3{
    font-size: 16px;
    line-height: 21px;
    color: #111;
    font-weight: 600;
}

.startcopy-pane > p{
    margin-top: 6px;
    font-size: 12px;
    color: #414141;
}

.startcopy-option-grid{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
}

.startcopy-option{
    width: 100%;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    background: #fff;
    text-align: left;
    padding: 20px;
    cursor: pointer;
}

.startcopy-option.selected{
    border-color: #eee6ed;
    background: #eee6ed;
}

.startcopy-option h4{
    font-size: 16px;
    line-height: 1;
    color: #111;
}

.startcopy-tag{
    margin-top: 10px;
    display: inline-block;
    border-radius: 1000px;
    background: #2022731a;
    color: #111;
    font-size: 10px;
    line-height: 1;
    padding: 6px;
    font-weight: 500;
}

.startcopy-stats{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.startcopy-stats span{
    font-size: 14px;
    color: #111;
    line-height: 21px;
}

.startcopy-stats strong{
    color: #4f034b;
    font-weight: 500;
}

.startcopy-stats em{
    color: #ff4c4c;
    font-style: normal;
    font-weight: 500;
}

.startcopy-option-grid.brokers{
    gap: 20px;
}

.startcopy-broker{
    width: 100%;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.startcopy-broker.selected{
    border-color: #eee6ed;
    background: #eee6ed;
}

.startcopy-badge{
    width: 53px;
    height: 48px;
    border-radius: 8px;
    background: #4f034b;
    color: #fbef9b;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.startcopy-broker strong{
    display: block;
    font-size: 16px;
    color: #111;
    line-height: 1.1;
}

.startcopy-broker small{
    display: block;
    margin-top: 2px;
    font-size: 10px;
    color: #414141;
}

.startcopy-form{
    margin-top: 20px;
}

.startcopy-form label{
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.startcopy-form label span{
    position: absolute;
    top: -6px;
    left: 13px;
    padding: 0 4px;
    background: #fff;
    color: #868686;
    font-size: 12px;
    line-height: 12px;
}

.startcopy-form input{
    width: 100%;
    border: 1px solid #e3e6f3;
    border-radius: 8px;
    padding: 15px 13px;
    font-size: 14px;
    color: #111;
    margin-top: 10px;
}

.startcopy-requirement{
    margin-top: 4px;
    border: 1px solid #ff4c4c;
    border-radius: 16px;
    background: #ff4c4c1a;
    padding: 19px;
    display: flex;
    gap: 16px;
}

.startcopy-req-icon{
    width: 26px;
    min-width: 26px;
    height: 30px;
    display: block;
}

.startcopy-requirement h4{
    font-size: 16px;
    color: #111;
    line-height: 24px;
    font-weight: 600;
}

.startcopy-requirement p{
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #414141;
}

.startcopy-security{
    margin-top: 10px;
    border: 1px solid #4f034b;
    border-radius: 16px;
    background: #4f034b1a;
    padding: 19px;
    color: #111;
    font-size: 14px;
    line-height: 21px;
}

.startcopy-security strong{
    color: #4f034b;
    font-weight: 600;
}

.mycopies-outline-btn img{
    width: 24px;
    height: 24px;
    display: block;
}

.startcopy-footer{
    margin-top: auto;
    padding-top: 60px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.startcopy-back img{
    filter: brightness(0);
}

.startcopy-back:disabled{
    opacity: .55;
    cursor: not-allowed;
}

.startcopy-back,
.startcopy-next{
    width: 110px;
    padding: 10px 20px;
    justify-content: center;
    gap: 10px;
}

.startcopy-vector-icon{
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(100);
}


.hero-banner {
    position: relative;
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-evenly;
}

.banner-lines span {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.banner-lines span::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -1px;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #FBEF9B, #C69B3F, transparent);
    border-radius: 50px;
    animation: moveLine 5s linear infinite;
    opacity: 0.8;
}

.banner-lines span:nth-child(1)::after { animation-delay: 0s; animation-duration: 6s; }
.banner-lines span:nth-child(2)::after { animation-delay: 2.5s; animation-duration: 5s; }
.banner-lines span:nth-child(3)::after { animation-delay: 1s; animation-duration: 7s; }
.banner-lines span:nth-child(4)::after { animation-delay: 4s; animation-duration: 4.5s; }
.banner-lines span:nth-child(5)::after { animation-delay: 1.5s; animation-duration: 6.5s; }
.banner-lines span:nth-child(6)::after { animation-delay: 3s; animation-duration: 5.5s; }

@keyframes moveLine {
    0% { top: -20%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 120%; opacity: 0; }
}

/* Page specific styles: terms-of-service (copied from aiboat(1)) */
.terms-page .hero-banner {
    height: 420px;
    min-height: 420px;
}

.term-item {
    margin-bottom: 30px;
}

.term-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.term-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #464646;
    margin-bottom: 10px;
}

.term-item ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.term-item ul li {
    list-style: disc;
    font-size: 15px;
    line-height: 1.6;
    color: #464646;
    margin-bottom: 10px;
}

.term-item a {
    color: inherit;
    text-decoration: underline;
    font-size: 15px;
}

