/* =====================================================
   SELİN ATEŞ — ABOUT
   LIQUID GLASS / CINEMATIC
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {
    --black: #030303;
    --black-soft: #080808;

    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.72);
    --white-muted: rgba(255, 255, 255, 0.42);

    --red: #ff2020;

    --line: rgba(255, 255, 255, 0.10);

    --display: "Figtree", sans-serif;
    --serif: "Instrument Serif", serif;
    --mono: "DM Mono", monospace;

    --ease-spring: cubic-bezier(.16, 1, .3, 1);
}


/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(255, 255, 255, 0.035),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(255, 32, 32, 0.045),
            transparent 30%
        ),
        #030303;

    color: var(--white);
    font-family: var(--display);
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.012) 1px,
            transparent 1px
        );

    background-size: 120px 100%;
    opacity: .25;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--red);
    color: #fff;
}


/* =====================================================
   LIQUID GLASS
===================================================== */

.liquid-glass {
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.10),
        inset 0 -1px 1px rgba(0,0,0,.15),
        0 20px 80px rgba(0,0,0,.20);
}


/*
   Cam kenarı artık mask kullanılmadan
   box-shadow ile oluşturuluyor.
*/

.liquid-glass::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    border: 1px solid rgba(255,255,255,.16);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        inset 0 -1px 0 rgba(255,255,255,.025);

    pointer-events: none;

    z-index: 10;
}


/* Cam üzerindeki ışık */

.liquid-glass::after {
    content: "";

    position: absolute;

    top: -120%;
    left: -50%;

    width: 40%;
    height: 320%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.055),
            transparent
        );

    transform:
        rotate(18deg)
        translateX(-120%);

    transition:
        transform 1.2s var(--ease-spring);

    pointer-events: none;
}

.liquid-glass:hover::after {
    transform:
        rotate(18deg)
        translateX(420%);
}


/* =====================================================
   CURSOR
===================================================== */

.cursor {
    position: fixed;

    top: 0;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 12px rgba(255,255,255,.75);

    pointer-events: none;

    z-index: 9999;

    mix-blend-mode: difference;
}

.cursor-glow {
    position: fixed;

    top: 0;
    left: 0;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.07),
            transparent 70%
        );

    pointer-events: none;

    z-index: 9998;
}


/* =====================================================
   HEADER
===================================================== */

.about-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;
}


/* Glass navbar */

.about-header::before {
    content: "";

    position: absolute;

    top: 16px;
    left: 24px;
    right: 24px;
    bottom: 16px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.11);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.08),
        0 15px 50px rgba(0,0,0,.20);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    pointer-events: none;
}

.about-logo,
.about-header-center,
.about-header-right {
    position: relative;
    z-index: 2;
}

.about-logo {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: -.04em;
}

.about-logo-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 10px rgba(255,32,32,.9),
        0 0 24px rgba(255,32,32,.45);

    animation: logoPulse 1.6s infinite;
}

@keyframes logoPulse {
    0%,
    100% {
        opacity: .55;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.about-header-center {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 18px;

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: .12em;

    color: var(--white-muted);
}

.about-header-center span:last-child {
    color: #fff;
}

.about-header-right {
    padding: 10px 15px;
}

.about-header-right a {
    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: .1em;

    color: var(--white-muted);

    transition:
        color .3s ease;
}

.about-header-right a:hover {
    color: #fff;
}


/* =====================================================
   HERO
===================================================== */

.about-hero {
    position: relative;

    min-height: 100vh;

    padding:
        150px 6vw 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}


/* Büyük arka plan halkası */

.about-hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -220px;
    top: 10%;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.07);

    box-shadow:
        0 0 0 70px rgba(255,255,255,.012),
        0 0 0 140px rgba(255,255,255,.007),
        0 0 120px rgba(255,32,32,.05);

    pointer-events: none;
}

.about-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    bottom: -230px;

    border-radius: 50%;

    border:
        1px solid rgba(255,32,32,.08);

    pointer-events: none;
}


/* =====================================================
   HERO NUMBER
===================================================== */

.about-hero-number {
    position: absolute;

    top: 150px;
    left: 6vw;

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: .12em;

    color: var(--white-muted);
}

.about-hero-number::before {
    content: "";

    display: inline-block;

    width: 25px;
    height: 1px;

    margin-right: 12px;

    vertical-align: middle;

    background: var(--red);
}


/* =====================================================
   HERO CONTENT
===================================================== */

.about-hero-content {
    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    margin: 0 auto;
}


/* =====================================================
   HERO LABEL
===================================================== */

.about-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    padding:
        8px 14px;

    border-radius: 999px;

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: .11em;

    color: rgba(255,255,255,.68);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-label::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 10px rgba(255,32,32,.8);
}


/* =====================================================
   HERO TITLE
===================================================== */

.about-hero h1 {
    position: relative;

    margin: 0;

    font-size:
        clamp(
            100px,
            17vw,
            250px
        );

    font-weight: 500;

    line-height: .72;

    letter-spacing: -.075em;

    text-transform: uppercase;
}

.about-hero h1 em {
    font-family: var(--serif);

    font-style: italic;

    font-weight: 400;

    color: rgba(255,255,255,.95);
}


/* Kırmızı nokta */

.about-hero h1 em::after {
    content: "";

    display: inline-block;

    width: .065em;
    height: .065em;

    margin-left: .04em;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 15px rgba(255,32,32,.75);
}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.about-hero-description {
    width: min(470px, 100%);

    margin-top: 55px;

    padding:
        18px 20px;

    border-radius: 20px;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255,255,255,.58);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.about-scroll {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 12px;

    font-family: var(--mono);

    font-size: 7px;

    letter-spacing: .14em;

    color: rgba(255,255,255,.35);
}

.about-scroll strong {
    font-size: 14px;

    font-weight: 400;

    color: rgba(255,255,255,.7);

    animation:
        scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}


/* =====================================================
   IMAGE SECTION
===================================================== */

.about-image-section {
    position: relative;

    padding:
        0 5vw 150px;
}

.about-image-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 28px;

    background: #080808;

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.08),
        0 30px 100px rgba(0,0,0,.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-image-frame::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    border-radius: inherit;

    border:
        1px solid rgba(255,255,255,.14);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18);

    pointer-events: none;
}

.about-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s var(--ease-spring),
        filter .6s ease;
}

.about-image-frame:hover img {
    transform: scale(1.025);

    filter:
        brightness(1.05);
}


/* Placeholder */

.about-image-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.055),
            rgba(255,255,255,.012) 40%,
            #050505 75%
        );
}

.about-image-placeholder::before {
    content: "";

    position: absolute;

    width: 45%;

    aspect-ratio: 1;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        0 0 100px rgba(255,32,32,.05);

    animation:
        aboutObject 10s linear infinite;
}

.about-image-placeholder::after {
    content: "";

    position: absolute;

    width: 20%;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,32,32,.35),
            rgba(255,32,32,0) 70%
        );

    filter: blur(20px);
}

@keyframes aboutObject {
    0% {
        transform:
            rotate(0deg)
            scale(1);
    }

    50% {
        transform:
            rotate(180deg)
            scale(1.08);
    }

    100% {
        transform:
            rotate(360deg)
            scale(1);
    }
}

.about-image-placeholder span {
    position: relative;

    z-index: 2;

    font-family: var(--mono);

    font-size: 9px;

    letter-spacing: .2em;

    color: rgba(255,255,255,.4);
}

.about-image-placeholder strong {
    position: relative;

    z-index: 2;

    margin-top: 10px;

    font-family: var(--serif);

    font-size:
        clamp(
            70px,
            10vw,
            150px
        );

    font-weight: 400;

    font-style: italic;

    line-height: .8;

    color:
        rgba(255,255,255,.85);
}

.about-image-caption {
    display: block;

    margin-top: 12px;

    padding-left: 5px;

    font-family: var(--mono);

    font-size: 7px;

    letter-spacing: .12em;

    color: rgba(255,255,255,.3);
}


/* =====================================================
   GLASS SECTIONS
===================================================== */

.about-section {
    position: relative;

    margin:
        0 5vw 80px;

    padding:
        90px 6vw 110px;

    border-radius: 30px;

    overflow: hidden;

    background:
        rgba(255,255,255,.018);

    border:
        1px solid rgba(255,255,255,.10);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.07),
        0 25px 100px rgba(0,0,0,.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
        );

    pointer-events: none;
}

.about-section::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.035);

    pointer-events: none;
}


/* =====================================================
   SECTION NUMBER
===================================================== */

.about-section-number {
    position: absolute;

    top: 32px;
    right: 38px;

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: .1em;

    color: rgba(255,255,255,.3);
}

.about-section-number::before {
    content: "";

    display: inline-block;

    width: 20px;
    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background:
        rgba(255,255,255,.2);
}


/* =====================================================
   SECTION CONTENT
===================================================== */

.about-section-content {
    position: relative;

    z-index: 2;

    max-width: 1100px;
}

.about-section-label {
    display: inline-block;

    margin-bottom: 35px;

    padding:
        7px 12px;

    border-radius: 999px;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.018);

    font-family: var(--mono);

    font-size: 7px;

    letter-spacing: .13em;

    color: rgba(255,255,255,.4);
}

.about-section h2 {
    margin: 0;

    max-width: 1000px;

    font-size:
        clamp(
            55px,
            8vw,
            125px
        );

    font-weight: 500;

    line-height: .82;

    letter-spacing: -.065em;
}

.about-section h2 em {
    font-family: var(--serif);

    font-style: italic;

    font-weight: 400;

    color:
        rgba(255,255,255,.92);
}


/* =====================================================
   TEXT
===================================================== */

.about-text-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 60px;

    max-width: 850px;

    margin-top: 70px;
}

.about-text-grid p {
    font-size: 14px;

    line-height: 1.8;

    color:
        rgba(255,255,255,.46);
}


/* =====================================================
   SERVICES
===================================================== */

.services-list {
    margin-top: 80px;

    border-top:
        1px solid rgba(255,255,255,.08);
}

.service-item {
    position: relative;

    display: grid;

    grid-template-columns:
        55px
        minmax(220px,1fr)
        minmax(180px,.8fr);

    align-items: center;

    gap: 20px;

    min-height: 95px;

    padding:
        18px 10px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    transition:
        background .4s ease,
        padding .5s var(--ease-spring);
}

.service-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 100%;

    background:
        var(--red);

    transform:
        scaleY(0);

    transform-origin:
        center;

    transition:
        transform .45s var(--ease-spring);
}

.service-item:hover {
    padding-left: 25px;

    background:
        rgba(255,255,255,.025);
}

.service-item:hover::before {
    transform:
        scaleY(1);
}

.service-item > span {
    font-family: var(--mono);

    font-size: 8px;

    color: var(--red);
}

.service-item strong {
    font-size: 20px;

    font-weight: 500;

    letter-spacing: -.035em;
}

.service-item small {
    font-family: var(--mono);

    font-size: 7px;

    line-height: 1.6;

    color:
        rgba(255,255,255,.3);
}


/* =====================================================
   EXPERIENCE
===================================================== */

.experience-list {
    margin-top: 80px;

    border-top:
        1px solid rgba(255,255,255,.08);
}

.experience-item {
    display: grid;

    grid-template-columns:
        130px 1fr;

    gap: 40px;

    padding:
        32px 0;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    transition:
        padding .45s var(--ease-spring);
}

.experience-item:hover {
    padding-left: 15px;
}

.experience-year {
    font-family: var(--mono);

    font-size: 9px;

    color: var(--red);
}

.experience-info h3 {
    margin-bottom: 10px;

    font-size: 21px;

    font-weight: 500;

    letter-spacing: -.04em;
}

.experience-info p {
    max-width: 520px;

    font-family: var(--mono);

    font-size: 8px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.35);
}


/* =====================================================
   TOOLS
===================================================== */

.tools-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 12px;

    margin-top: 80px;
}

.tool {
    position: relative;

    min-height: 210px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 22px;

    background:
        rgba(255,255,255,.018);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.05);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    transition:
        transform .55s var(--ease-spring),
        border-color .4s ease,
        background .4s ease;
}

.tool:hover {
    transform:
        translateY(-7px);

    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.18);
}

.tool span {
    font-family: var(--mono);

    font-size: 8px;

    color:
        rgba(255,255,255,.35);
}

.tool strong {
    font-size: 27px;

    font-weight: 500;

    letter-spacing: -.05em;
}

.tool small {
    font-family: var(--mono);

    font-size: 7px;

    color:
        rgba(255,255,255,.3);
}


/* =====================================================
   EDUCATION
===================================================== */

.education-list {
    margin-top: 80px;

    border-top:
        1px solid rgba(255,255,255,.08);
}

.education-item {
    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 30px;

    padding:
        35px 0;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.education-item > span {
    font-family: var(--mono);

    font-size: 8px;

    color: var(--red);
}

.education-item h3 {
    margin-bottom: 10px;

    font-size: 20px;

    font-weight: 500;
}

.education-item p {
    font-family: var(--mono);

    font-size: 8px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.35);
}

.education-item small {
    display: inline-block;

    margin-top: 12px;

    font-family: var(--mono);

    font-size: 7px;

    color: var(--red);
}


/* =====================================================
   STATEMENT
===================================================== */

.about-statement {
    position: relative;

    min-height: 80vh;

    margin:
        0 5vw 80px;

    padding:
        100px 6vw;

    display: grid;

    grid-template-columns:
        80px 1fr;

    gap: 45px;

    align-content: center;

    border-radius: 32px;

    overflow: hidden;

    background:
        rgba(255,255,255,.018);

    border:
        1px solid rgba(255,255,255,.10);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.07),
        0 25px 100px rgba(0,0,0,.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-statement::before {
    content: "07";

    position: absolute;

    right: -60px;
    bottom: -180px;

    font-size:
        45vw;

    font-weight: 600;

    line-height: .7;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.035);

    pointer-events: none;
}

.about-statement-number {
    position: relative;

    z-index: 2;

    font-family: var(--mono);

    font-size: 8px;

    color:
        rgba(255,255,255,.35);
}

.about-statement-content {
    position: relative;

    z-index: 2;
}

.about-statement h2 {
    max-width: 900px;

    font-size:
        clamp(
            65px,
            10vw,
            155px
        );

    font-weight: 500;

    line-height: .76;

    letter-spacing:
        -.07em;
}

.about-statement h2 em {
    font-family: var(--serif);

    font-style: italic;
}

.about-statement p {
    max-width: 570px;

    margin-top: 65px;

    font-size: 14px;

    line-height: 1.8;

    color:
        rgba(255,255,255,.42);
}


/* =====================================================
   CONTACT
===================================================== */

.about-contact {
    position: relative;

    min-height: 75vh;

    margin:
        0 5vw 80px;

    padding:
        100px 6vw;

    display: grid;

    grid-template-columns:
        80px 1fr;

    gap: 45px;

    align-content: center;

    border-radius: 32px;

    overflow: hidden;

    background:
        rgba(255,255,255,.018);

    border:
        1px solid rgba(255,255,255,.10);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.07),
        0 25px 100px rgba(0,0,0,.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-contact::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    border-radius: 50%;

    border:
        1px solid rgba(255,32,32,.12);

    box-shadow:
        0 0 100px rgba(255,32,32,.08);

    pointer-events: none;
}

.about-contact-number {
    position: relative;

    z-index: 2;

    font-family: var(--mono);

    font-size: 8px;

    color:
        rgba(255,255,255,.35);
}

.about-contact-content {
    position: relative;

    z-index: 2;
}

.about-contact h2 {
    max-width: 900px;

    font-size:
        clamp(
            70px,
            11vw,
            180px
        );

    font-weight: 500;

    line-height: .74;

    letter-spacing:
        -.075em;
}

.about-contact h2 em {
    font-family: var(--serif);

    font-style: italic;
}


/* =====================================================
   CONTACT BUTTON
===================================================== */

.about-contact-button {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    min-width: 230px;

    margin-top: 65px;

    padding:
        8px 9px 8px 20px;

    border-radius: 999px;

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: .11em;

    color: white;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.16);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.08);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .4s ease,
        border-color .4s ease,
        transform .5s var(--ease-spring);
}

.about-contact-button span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #fff;

    color: #000;

    font-size: 15px;

    transition:
        transform .5s var(--ease-spring);
}

.about-contact-button:hover {
    background:
        rgba(255,255,255,.07);

    border-color:
        rgba(255,255,255,.35);

    transform:
        translateY(-3px);
}

.about-contact-button:hover span {
    transform:
        rotate(45deg);
}


/* =====================================================
   FOOTER
===================================================== */

.about-footer {
    min-height: 100px;

    margin:
        0 5vw;

    padding:
        25px 10px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,.08);

    font-family: var(--mono);

    font-size: 7px;

    letter-spacing: .1em;

    color:
        rgba(255,255,255,.3);
}

.about-footer a {
    color:
        rgba(255,255,255,.4);

    transition:
        color .3s ease;
}

.about-footer a:hover {
    color: #fff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .about-hero h1 {
        font-size:
            clamp(
                85px,
                16vw,
                180px
            );
    }

    .tools-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .about-header {
        padding: 16px;
    }

    .about-header::before {
        top: 10px;
        left: 16px;
        right: 16px;
        bottom: 10px;
    }

    .about-header-center {
        display: none;
    }

    .about-header-right {
        padding:
            8px 10px;
    }

    .about-logo {
        padding:
            8px 10px;
    }


    /* HERO */

    .about-hero {
        min-height:
            100svh;

        padding:
            125px 20px 70px;
    }

    .about-hero-number {
        top: 112px;
        left: 20px;
    }

    .about-hero h1 {
        font-size:
            clamp(
                72px,
                21vw,
                140px
            );

        line-height:
            .76;
    }

    .about-hero-description {
        margin-top:
            40px;

        font-size:
            13px;

        border-radius:
            17px;
    }

    .about-scroll {
        bottom:
            22px;
    }


    /* IMAGE */

    .about-image-section {
        padding:
            0 15px 90px;
    }

    .about-image-frame {
        border-radius:
            20px;
    }


    /* SECTIONS */

    .about-section {
        margin:
            0 15px 50px;

        padding:
            60px 22px 70px;

        border-radius:
            24px;
    }

    .about-section-number {
        top: 25px;
        right: 25px;
    }

    .about-section h2 {
        font-size:
            clamp(
                50px,
                13vw,
                95px
            );
    }


    /* TEXT */

    .about-text-grid {
        grid-template-columns:
            1fr;

        gap:
            25px;

        margin-top:
            50px;
    }


    /* SERVICES */

    .services-list {
        margin-top:
            55px;
    }

    .service-item {
        grid-template-columns:
            35px 1fr;

        gap:
            10px;

        min-height:
            100px;
    }

    .service-item strong {
        font-size:
            17px;
    }

    .service-item small {
        grid-column:
            2;
    }


    /* EXPERIENCE */

    .experience-list {
        margin-top:
            55px;
    }

    .experience-item {
        grid-template-columns:
            55px 1fr;

        gap:
            15px;
    }

    .experience-info h3 {
        font-size:
            17px;
    }


    /* TOOLS */

    .tools-grid {
        grid-template-columns:
            1fr;

        margin-top:
            55px;
    }

    .tool {
        min-height:
            170px;

        border-radius:
            18px;
    }


    /* EDUCATION */

    .education-list {
        margin-top:
            55px;
    }

    .education-item {
        grid-template-columns:
            35px 1fr;

        gap:
            15px;
    }

    .education-item h3 {
        font-size:
            16px;
    }


    /* STATEMENT */

    .about-statement {
        min-height:
            70vh;

        margin:
            0 15px 50px;

        padding:
            65px 22px 75px;

        grid-template-columns:
            1fr;

        gap:
            25px;

        border-radius:
            24px;
    }

    .about-statement h2 {
        font-size:
            clamp(
                58px,
                17vw,
                120px
            );
    }

    .about-statement p {
        margin-top:
            45px;

        font-size:
            13px;
    }


    /* CONTACT */

    .about-contact {
        min-height:
            65vh;

        margin:
            0 15px 50px;

        padding:
            65px 22px 75px;

        grid-template-columns:
            1fr;

        gap:
            25px;

        border-radius:
            24px;
    }

    .about-contact h2 {
        font-size:
            clamp(
                60px,
                18vw,
                130px
            );
    }

    .about-contact-button {
        margin-top:
            50px;

        min-width:
            210px;
    }


    /* FOOTER */

    .about-footer {
        margin:
            0 20px;

        padding:
            25px 0;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            15px;
    }


    /* MOBILE CURSOR */

    .cursor,
    .cursor-glow {
        display: none;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

}