.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(34, 199, 255, 0.2),
            transparent 26%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(15, 111, 255, 0.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061126,
            #081d42 55%,
            #0a3d91
        );
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: #dff7ff;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero-badge i {
    color: var(--color-accent);
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 25px;
    color: var(--color-white);
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        var(--color-accent),
        #ffffff
    );
    background-clip: text;
    color: transparent;
}

.hero-copy {
    max-width: 720px;
    margin-bottom: 35px;
    color: #ccd8ea;
    font-size: 1.17rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 45px;
}

.hero-tech span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.07);
    color: #e9f0fb;
}

.hero-tech i {
    color: var(--color-accent);
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.code-window {
    position: absolute;
    inset: 40px 0 auto auto;
    width: min(100%, 530px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background: rgba(6, 17, 38, 0.76);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
}

.code-window-header {
    display: flex;
    gap: 8px;
    padding: 17px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-window-header span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff6b6b;
}

.code-window-header span:nth-child(2) {
    background: #ffd166;
}

.code-window-header span:nth-child(3) {
    background: #35d07f;
}

.code-content {
    padding: 34px;
    color: #d6e4fa;
    font-family: Consolas, monospace;
    line-height: 2;
}

.code-content .keyword {
    color: #6edbff;
}

.code-content .string {
    color: #9cf5bb;
}

.code-content .property {
    color: #ffd166;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.floating-card i {
    color: var(--color-accent);
    font-size: 1.4rem;
}

.floating-card-one {
    bottom: 65px;
    left: -20px;
}

.floating-card-two {
    right: -15px;
    bottom: 5px;
}

/*
|--------------------------------------------------------------------------
| Trusted Technologies
|--------------------------------------------------------------------------
*/

.trusted-technologies {
    position: relative;
    z-index: 5;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

.trusted-technologies-header {
    margin-bottom: 26px;
    text-align: center;
}

.trusted-technologies-header p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.technology-logo-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    align-items: center;
    gap: 15px;
}

.technology-logo-item {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: #7b8493;
    font-weight: 700;
    transition:
        color var(--transition-base),
        background var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.technology-logo-item i {
    font-size: 1.65rem;
    transition: transform var(--transition-base);
}

.technology-logo-item:hover {
    border-color: var(--color-border);
    background: var(--color-light);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.technology-logo-item:hover i {
    transform: scale(1.1);
}

/*
|--------------------------------------------------------------------------
| About Preview
|--------------------------------------------------------------------------
*/

.home-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(34, 199, 255, 0.08),
            transparent 30%
        ),
        var(--color-white);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 95px;
}

.home-about-visual {
    position: relative;
    min-height: 610px;
}

.about-visual-main {
    position: absolute;
    inset: 55px 30px 55px 30px;
    display: flex;
    overflow: hidden;
    padding: 55px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(34, 199, 255, 0.22),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            var(--color-dark),
            var(--color-primary-dark)
        );
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
}

.about-visual-main::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
    content: "";
    opacity: 0.65;
}

.about-visual-main > * {
    position: relative;
    z-index: 2;
}

.about-visual-icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--color-accent);
    font-size: 1.75rem;
    backdrop-filter: blur(12px);
}

.about-visual-label {
    margin-bottom: 14px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-visual-main h3 {
    max-width: 430px;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.about-visual-main p {
    max-width: 430px;
    color: #c6d4e8;
}

.about-code-lines {
    display: grid;
    gap: 10px;
    margin-top: 23px;
}

.about-code-lines span {
    display: block;
    height: 8px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.11);
}

.about-code-lines span:nth-child(1) {
    width: 84%;
}

.about-code-lines span:nth-child(2) {
    width: 68%;
    background: rgba(34, 199, 255, 0.28);
}

.about-code-lines span:nth-child(3) {
    width: 76%;
}

.about-code-lines span:nth-child(4) {
    width: 48%;
    background: rgba(34, 199, 255, 0.2);
}

.about-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    width: min(290px, 78%);
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.about-floating-card-top {
    top: 0;
    right: -12px;
}

.about-floating-card-bottom {
    bottom: 0;
    left: -10px;
}

.about-floating-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 14px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    font-size: 1.2rem;
}

.about-floating-card strong,
.about-floating-card span {
    display: block;
}

.about-floating-card strong {
    margin-bottom: 3px;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 0.92rem;
}

.about-floating-card span {
    color: var(--color-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.about-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-decoration-one {
    top: 20px;
    left: -40px;
    width: 170px;
    height: 170px;
    border: 30px solid rgba(15, 111, 255, 0.07);
}

.about-decoration-two {
    right: -25px;
    bottom: 25px;
    width: 100px;
    height: 100px;
    background: rgba(34, 199, 255, 0.11);
    filter: blur(2px);
}

.home-about-content h2 {
    max-width: 680px;
    margin-bottom: 25px;
}

.home-about-content h2 span {
    color: var(--color-primary-light);
}

.home-about-lead {
    color: var(--color-heading);
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.8;
}

.home-about-content > p:not(.home-about-lead) {
    max-width: 720px;
}

.home-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 35px 0;
}

.home-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home-about-feature-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-primary-light);
}

.home-about-feature strong {
    display: block;
    margin-bottom: 7px;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 0.94rem;
}

.home-about-feature p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.home-about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.home-about-experience {
    display: flex;
    align-items: center;
    gap: 13px;
}

.home-about-experience-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--color-light);
    color: var(--color-primary);
    font-size: 1.2rem;
}

.home-about-experience strong,
.home-about-experience small {
    display: block;
}

.home-about-experience strong {
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.home-about-experience small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 0.76rem;
}