/*
Theme Name: MyEdison
Author: SO Technology
Version: 1.0
*/
:root {
    --text-color: #A1A1AA;
    --text-secondary: #17171C;
    --border-color: #2A2A32;
    --dark-grey: #1B1B22;
    --btn-color: #8457FF;
    --btn-dark : #111117;
    --btn-grey: #25252D;
    --white: #FFFFFF;
    --white-secondary: #FAFAFA;
    --black: #000000;
    --gradient: linear-gradient(101.36deg, #8457FF 0%, #2A6DF4 100%);
    --gradient-bg: rgba(37, 37, 45, 0.3);
    --section-gradient: linear-gradient(105.1deg, #8457FF 0%, #2A6DF4 100%);
    --primary-font: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
    padding: 0 0;
    margin: 0 0;
    font-family: var(--primary-font);
    background: rgba(17, 17, 23, 1);
    backdrop-filter: blur(4px);
}
br {
    display: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul,
ol {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.tagline {
    font-size: 14px;
    line-height: 20px;
    margin: 16px 0;
    max-width: 60%;
}
h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 100%;
    margin: 0 0 16px;
}
h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 8px;
}
h4 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--white-secondary);
    margin: 0 0 4px;
}
h1 strong {
    background: linear-gradient(101.36deg, #8457FF 0%, #2A6DF4 50%, #FF5CAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: waveGradient 4s ease-in-out infinite;
    font-weight: 700;
}
@keyframes waveGradient {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 60%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 40%;
    }
    100% {
        background-position: 0% 50%;
    }
}
p {
    font-size: 20px;
    line-height: 1.56;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 32px;
}
a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    text-transform: capitalize;
}
a:focus,
a:hover,
a:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
    text-decoration: none;
    color: var(--white);
}
a:not([href]):not([class]), 
a:not([href]):not([class]):hover {
    color: var(--text-color);
}
a:hover {
    color: var(--white);
}
a.link {
    position: relative;
    padding-right: 20px;
}
a.link:after {
    background: url('assets/images/right-arrow.svg') no-repeat;
    background-size: contain;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 0;
    width: 20px;
    height: 20px;
}
.btn {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    background: var(--btn-color);
    padding: 12px 32px;
    border-radius: 10px;
    border: none;
    width: fit-content;
}
.btn:hover {
    background: var(--gradient);
    color: var(--white);
}
.btn.dark {
    background: var(--btn-dark);
    color: var(--white-secondary);
}
.btn.dark:hover {
    background: var(--white-secondary);
    color: var(--btn-dark);
}
.btn.grey {
    background: var(--btn-grey);
    color: var(--white);
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.gradient-bg {
    background: var(--section-gradient);
}
.text-light {
    color: var(--white-secondary);
}
header {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}
header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-nav {
    gap: 32px;
}
.navbar-nav li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text-color);
    padding: 0 0;
}
.navbar-nav li a:hover {
    color: var(--white-secondary);
}
header .buttons .btn {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 12px;
}
header .buttons .link {
    color: var(--white-secondary);
}
header .buttons .link:after {
    content: none;
}
footer {
    padding: 64px 0;
    background: var(--dark-grey);
}
footer .top {
    border-bottom: 1px solid var(--border-color);
}
footer h3 {
    margin: 0 0;
    text-align: right;
}
footer .copyright {
    font-size: 14px;
    line-height: 20px;
    margin: 32px 0 0;
    text-align: center;
}
.text {
    text-align: center;
}
.text h2 {
    font-size: 36px;
    line-height: 1.112;
    color: var(--white);
    margin: 0 0 16px;
    font-weight: 700;
}
.text strong {
    font-weight: 700;
    color: var(--white-secondary);
}
.text p {
    font-size: 18px;
    margin: 0 0 64px;
}
.sTitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    background: rgba(132, 87, 255, 0.1);
    color: var(--btn-color);
    margin: 0 0 24px;
    padding: 8px 16px 8px 40px;
    border-radius: 9999px;
    display: inline-block;
    position: relative;
}
.sTitle:before {
    content: '';
    background: url('assets/images/sTitle.svg') no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.box-item {
    width: 100%;
    max-width: 310px;
    background: var(--dark-grey);
    border: 1px solid var(--border-color);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 20px 20px;
    border-radius: 12px;
}
.box-item img {
    margin: 0 0 12px;
}
.box-item h2 {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 4px;
}
.box-item p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0;
}
.box-item ul,
.box-item ol {
    flex-direction: column;
    align-items: start;
    flex-wrap: nowrap;
    gap: 8px;
    padding-left: 15px;
    list-style: disc;
}
.box-item ul li {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}
.boxes.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1152px;
    margin: 0 auto;
}
.boxes.grid .box-item {
    max-width: 368px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    box-shadow: none;
    padding: 25px 25px;
}
.boxes.grid .box-item h2 {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 12px;
}
.boxes.grid .box-item img {
    margin: 0 0 14px
}
.our-mission .boxes {
    justify-content: center;
}
.our-mission .box-item {
    text-align: center;
}
.our-mission .btn,
.how-it-works .btn {
    display: block;
    margin: 40px auto 0;
}
.about .content {
    width: 100%;
    max-width: 956px;
    margin: 0 auto;
}
.about .text h2 {
    font-size: 48px;
    line-height: 1;
}
.about .text p {
    font-size: 24px;
    line-height: 1.34;
    color: var(--btn-color);
}
.about p:not(.text p, blockquote p) {
    font-size: 16px;
    margin: 0 0;
}
.about p strong {
    color: var(--white-secondary);
}
.about p:not(.text p):not(:last-child) {
    margin: 0 0 16px;
}
.about .desc {
    margin-bottom: 48px;
}
.about blockquote {
    padding: 40px 40px 40px 76px;
    border-radius: 16px;
    background: rgba(37, 37, 45, 0.5);
    position: relative;
    margin: 0 0 48px;
}
.about blockquote p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    margin: 0 0;
    color: var(--white-secondary);
}
.about blockquote:before {
    content: '';
    background: url('assets/images/quotemark.svg') no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 24px;
    left: 24px;
}
.about blockquote .author {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin: 16px 0 0;
    text-align: center;
    display: block;
}
.fact h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
    margin: 0 0 16px;
    font-weight: 700;
    color: var(--white);
}
.fact {
    padding-left: 32px;
    position: relative;
}
.fact:not(:last-child) {
    margin-bottom: 48px;
}
.fact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    background-color: var(--btn-color);
}
.fact:after {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    width: 2px;
    border-left: 2px solid rgba(132, 87, 255, 0.3);
    height: 100%;
}
.blocks {
    max-width: 1024px;
    margin: 0 auto;
    gap: 32px;
}
.blocks .item {
    text-align: center;
    padding: 32px 23px;
    background: #FFF;
    border-radius: 16px;
    width: 100%;
}
.blocks.dark .item {
    border: 1px solid var(--border-color);
    background: var(--dark-grey);
}
.item img,
.item svg {
    margin-bottom: 20px;
}
.item h3 {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 700;
    margin: 0 0 12px;
}
.blocks.dark .item {
    position: relative;
}
.blocks.dark .item h3 {
    color: var(--white-secondary);
    margin: 0 0;
}
.blocks.dark .item strong {
    color: var(--btn-color);
    margin-bottom: 16px;
    display: inline-block;
}
.item p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0;
}
.blocks.dark .item p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
}
.blocks.dark .item p:not(:last-child) {
    margin-bottom: 16px;
}
.blocks.dark .item p i {
    color: rgba(161, 161, 170, 0.8);
}
.blocks.dark .item blockquote {
    margin: 0 0 1rem;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    font-style: italic;
    color: var(--white-secondary);
    font-weight: 400;
    padding: 16px 12px;
    background: rgba(37, 37, 45, 0.5);
    border-radius: 12px;
}
.blocks.dark .item .social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}
.item .social a:hover svg path {
    fill: var(--text-color);
}
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto;
}
.plan {
    width: 100%;
    max-width: 270px;
    padding: 24px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--dark-grey);
    position: relative;
}
.plan.popular {
    border-color: var(--btn-color);
}
.plan .tag {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--btn-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 12px;
    border-radius: 9999px;
}
.plan h3 {
    line-height: 1.556;
    color: var(--white-secondary);
}
.price {
    font-size: 30px;
    line-height: 36px;
    color: var(--white-secondary);
    font-weight: 700;
    margin: 0 0;
    display: inline-block;
}
.plan small {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    margin: 0 0;
}
.plan .detail {
    margin: 24px 0;
}
.plan ul {
    flex-direction: column;
    align-items: start;
    gap: 12px;
}
.plan li {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    position: relative;
    padding: 0 0 0 24px;
}
.plan li:before {
    background: url('assets/images/checkmark.svg') no-repeat;
    background-size: contain;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
    width: 16px;
    height: 10px;
}
.plan .btn {
    font-size: 14px;
    line-height: 20px;
    color: var(--white-secondary);
    padding: 10px 30px;
    display: block;
    width: 100%;
}
.plan.popular .btn {
    background: var(--btn-color);
}
.metrics {
    padding: 80px 0;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}
.metric .value {
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: var(--white-secondary);
    margin: 0 0 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.metric .value.visible {
    opacity: 1;
    transform: translateY(0);
}
.metric .subtext {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin: 0 0;
}
.hero-section {
    padding: 38px 0 100px;
    background: linear-gradient(135deg, #111117 0%, #111117 50%, rgba(37, 37, 45, 0.3) 100%);
}
.key-challanges {
    padding-top: 76px;
}
.how-it-works,
.our-mission {
    background: var(--gradient-bg);
}
.cta-section p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
}
.cta-section .btn {
    margin: 0 0 32px;
}
.cta-section ul li h4 {
    font-weight: 400;
    margin: 0 0 0 8px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: middle;
}
.features {
    background: linear-gradient(118.12deg, #8457FF 0%, #2A6DF4 100%);
}
.features .text p {
    color: rgba(255, 255, 255, 0.7);
}
.steps {
    max-width: 1056px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 8px;
    counter-reset: step;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 144px;
    position: relative;
}
.step .logo {
    margin: 0 auto 12px;
    width: 56px;
    position: relative;
}
.step .logo:before {
    counter-increment: step;
    content: counter(step);
    background-color: var(--btn-color);
    position: absolute;
    top: -10px;
    left: -5px;
    z-index: 0;
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 16px;
    color: #FFF;
    font-weight: 700;
    padding: 4px 0;
}
.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 37px;
    right: -20px;
    border-top: 2px solid var(--border-color);
    width: 32px;
    height: 2px;
}
.step p {
    font-size: 12px;
    line-height: 15px;
    margin: 0 0;
    max-width: 115px;
}
.video-section__media {
    margin: auto;
}
.video-section__media--full {
    width: 100%;
}
.video-section__media--contained {
    width: 60%;
}
.video__responsive-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}
.video__responsive-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video__player {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1336px;
    }
    br {
        display: block;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 30px;
    }
    h2,
    .text h2 {
        font-size: 24px;
        margin: 0 0 10px;
    }
    p,
    .text p {
        font-size: 16px;
        margin: 0 0 16px;
        max-width: 100% !important;
    }
    .item p {
        font-size: 14px;
        line-height: 22px;
    }
    header .buttons {
        display: none;
    }
    .col {
        flex: unset;
    }
    section {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .blocks {
        flex-direction: column;
        align-items: center;
    }
    .boxes.grid,
    .metrics-grid,
    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }
    .boxes,
    .steps {
        justify-content: center;
    }
    .boxes {
        margin-top: 16px;
    }
    .steps {
        flex-direction: column;
        gap: 64px 8px;
    }
    .step:not(:last-child):after {
        top: unset;
        left: 50%;
        bottom: -32px;
        right: unset;
        transform: translateX(-50%) 
        rotate(90deg);
    }
    .box-item,
    .plan {
        text-align: center;
    }
    .box-item ul,
    .box-item ol,
    .plan ul,
    .plan ol {
        align-items: center;
    }
    .blocks .item {
        padding: 16px 16px;
    }
    .cta-section .btn {
        margin: 0 0 16px;
    }
    ul,
    ol {
        gap: 12px;
    }
    .btn {
        padding: 8px 24px;
    }
    footer {
        padding: 32px 0;
        text-align: center;
    }
    footer h3 {
        text-align: inherit;
    }
    .metric .value {
        font-size: 34px;
        line-height: 34px;
    }
    .video-section__media--contained {
        width: 100%;
    }
}
