/* ==================================================
ABOUT
================================================== */

.dr1061about{
    position:relative;
    overflow:hidden;

    padding:80px 0;

    background:
    radial-gradient(
        circle at top left,
        rgba(0,229,255,.12),
        transparent 30%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(0,255,198,.10),
        transparent 35%
    ),

    linear-gradient(
        180deg,
        #020617,
        #061326,
        #020617
    );

    color:#fff;
}

/* ==================================================
BACKGROUND GRID
================================================== */

.dr1061about-bg{
    position:absolute;
    inset:0;

    background-image:

    linear-gradient(
        rgba(255,255,255,.02) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.02) 1px,
        transparent 1px
    );

    background-size:50px 50px;

    opacity:.45;

    pointer-events:none;
}

/* ==================================================
CONTAINER
================================================== */

.dr1061about-container{
    position:relative;
    z-index:2;

    width:min(1400px,92%);
    margin:auto;
}

/* ==================================================
HEADER
================================================== */

.dr1061about-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.dr1061about-badge{
    display:inline-flex;
    align-items:center;

    padding:10px 20px;

    border-radius:999px;

    background:
    rgba(0,229,255,.10);

    border:
    1px solid rgba(0,229,255,.25);

    color:#7df9ff;

    font-size:12px;
    font-weight:700;

    letter-spacing:.12em;
}

.dr1061about-header h1{
    margin:24px 0 16px;

    font-size:clamp(42px,6vw,72px);

    line-height:1.1;

    font-weight:900;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #7df9ff,
        #00ffc6
    );

    -webkit-background-clip:text;
    color:transparent;
}

.dr1061about-subtitle{
    font-size:20px;
    line-height:1.8;

    color:
    rgba(255,255,255,.8);
}

/* ==================================================
HERO
================================================== */

.dr1061about-hero{
    display:grid;

    grid-template-columns:
    minmax(0,1fr)
    minmax(0,1fr);

    gap:70px;

    align-items:center;
}

/* ==================================================
IMAGE
================================================== */

.dr1061about-image{
    position:relative;

    overflow:hidden;

    border-radius:28px;

    aspect-ratio:1/1;
}

.dr1061about-image img{

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    display:block;

    border-radius:inherit;

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 40px 80px rgba(0,0,0,.45);

    transition:
    transform .8s ease;
}

.dr1061about:hover .dr1061about-image img{
    transform:scale(1.04);
}

.dr1061about-image::after{

    content:"";

    position:absolute;
    inset:0;

    background:

    linear-gradient(
        to top,
        rgba(2,6,23,.75),
        transparent 40%
    );

    pointer-events:none;
}

/* ==================================================
ORB
================================================== */

.dr1061about-orb{

    position:absolute;

    width:220px;
    height:220px;

    top:-50px;
    right:-50px;

    border-radius:50%;

    background:

    radial-gradient(
        circle,
        rgba(0,229,255,.45),
        transparent 70%
    );

    filter:blur(40px);

    animation:
    dr1061Orb 6s ease-in-out infinite;
}

/* ==================================================
CONTENT
================================================== */

.dr1061about-content h2{

    font-size:42px;

    line-height:1.2;

    margin-bottom:24px;
}

.dr1061about-content p{

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,.85);

    margin-bottom:20px;
}

/* ==================================================
CARDS
================================================== */

.dr1061about-highlights{

    margin-top:90px;

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:24px;
}

.dr1061about-card{

    position:relative;

    overflow:hidden;

    padding:32px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    transition:
    .4s ease;
}

.dr1061about-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:2px;

    background:
    linear-gradient(
        90deg,
        #00e5ff,
        #00ffc6
    );
}

.dr1061about-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 40px
    rgba(0,229,255,.12);
}

.dr1061about-card h3{

    margin-bottom:14px;

    color:#7df9ff;

    font-size:22px;
}

.dr1061about-card p{

    color:
    rgba(255,255,255,.8);

    line-height:1.8;
}

/* ==================================================
ANIMATION
================================================== */

.dr1061about{

    opacity:0;

    transform:
    translateY(60px);

    transition:
    1s ease;
}

.dr1061about.dr1061about-visible{

    opacity:1;

    transform:none;
}

@keyframes dr1061Orb{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}

/* ==================================================
TABLET
================================================== */

@media (max-width:900px){

    .dr1061about-hero{

        grid-template-columns:1fr;

        gap:40px;
    }

    .dr1061about-highlights{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* ==================================================
MOBILE
================================================== */

@media (max-width:768px){

    .dr1061about{

        padding:60px 0;
    }

    .dr1061about-header{

        margin-bottom:50px;
    }

    .dr1061about-header h1{

        font-size:38px;
    }

    .dr1061about-subtitle{

        font-size:16px;
        line-height:1.7;
    }

    .dr1061about-content h2{

        font-size:30px;
    }

    .dr1061about-content p{

        font-size:16px;
        line-height:1.8;
    }

    .dr1061about-highlights{

        grid-template-columns:1fr;

        gap:18px;

        margin-top:60px;
    }

    .dr1061about-card{

        padding:24px;
        border-radius:20px;
    }

    .dr1061about-orb{

        width:140px;
        height:140px;

        top:-20px;
        right:-20px;
    }
}

/* ==================================================
SMALL PHONES
================================================== */

@media (max-width:480px){

    .dr1061about{

        padding:50px 0;
    }

    .dr1061about-container{

        width:94%;
    }

    .dr1061about-header h1{

        font-size:32px;
    }

    .dr1061about-badge{

        font-size:10px;

        padding:8px 14px;
    }

    .dr1061about-content h2{

        font-size:26px;
    }

    .dr1061about-image{

        border-radius:20px;
    }
}