/* ==========================================
   ACAYIPCO Design System v2.0
========================================== */

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter_18pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg: #060606;
    --surface: #101010;
    --surface-2: #171717;
    --white: #f6f6f6;
    --gray: #8b8b8b;
    --border: #262626;
    --accent: #ffffff;
    --container: 1440px;
    --transition: .35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1.08;
}

.container {
    width: min(88%, var(--container));
    margin-inline: auto;
}

section {
    padding: 140px 0;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .035;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,.08) 0 1px, transparent 1px);
    background-size: 3px 3px, 5px 5px;
    mix-blend-mode: screen;
}

.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.075), transparent 66%);
    transform: translate(-50%, -50%);
    opacity: .55;
    filter: blur(6px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 34px 0;
    background: rgba(5, 5, 5, .35);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a,
.header-cta {
    font-size: 14px;
    color: var(--gray);
}

.nav a:hover,
.header-cta:hover {
    color: var(--white);
}

.header-cta {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: clamp(360px, 56vw, 920px);
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(.82);
    filter: blur(14px);
    will-change: transform, opacity, filter;
}

.loader-light {
    position: absolute;
    top: 0;
    left: -40%;
    width: 22%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    perspective: 1200px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    left: 48%;
    top: 46%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,.11), rgba(255,255,255,.03), transparent 68%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-label {
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--gray);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 1040px;
    font-family: "Inter", sans-serif;
    font-size: clamp(46px, 6.4vw, 94px);
    line-height: 1.16;
    letter-spacing: -.018em;
    font-weight: 700;
}

.hero-title span {
    display: block;
    overflow: visible;
    padding-bottom: .08em;
}

.hero-text {
    max-width: 760px;
    margin-top: 54px;
    font-size: clamp(18px, 1.55vw, 23px);
    color: #9d9d9d;
    line-height: 1.45;
}

.hero-link {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 46px;
    font-size: 16px;
    font-weight: 600;
}

.hero-link:hover {
    transform: translateX(8px);
}

.hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 180px;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.hero-link:hover::after {
    transform: scaleX(1);
}

.hero-parrot-wrap {
    position: absolute;
    right: -3vw;
    bottom: 8vh;
    width: clamp(220px, 28vw, 520px);
    aspect-ratio: 1 / 1;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.parrot-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.parrot-back { opacity: .22; filter: blur(3px); }
.parrot-mid { opacity: .42; filter: blur(1px); }
.parrot-front { opacity: .72; }

.scroll-hint{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:72px;
    opacity:.28;
}

.scroll-hint span{
    width:56px;
    height:1px;
    background:#5a5a5a;
}

.scroll-hint p{
    font-size:11px;
    font-weight:500;
    letter-spacing:.32em;
    text-transform:uppercase;
    color:#8b8b8b;
    white-space:nowrap;
    user-select:none;
}

.section-label {
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--gray);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.manifesto,
.about,
.selected-work,
.contact {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.manifesto,
.about,
.selected-work {
    min-height: 100vh;
}

.contact {
    min-height: 90vh;
}

.manifesto::before {
    content: "";
    position: absolute;
    right: -12vw;
    top: 50%;
    width: 620px;
    height: 620px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(255,255,255,.055), transparent 65%);
    pointer-events: none;
}

.manifesto h2,
.selected-work h2,
.about h2,
.contact h2 {
    font-family: "Inter", sans-serif;
    line-height: 1.13;
    letter-spacing: -.018em;
    font-weight: 700;
}

.manifesto h2 {
    max-width: 1040px;
    font-size: clamp(42px, 5.8vw, 88px);
}

.manifesto h2 span {
    display: block;
    color: var(--gray);
}

.manifesto-text,
.selected-work-text,
.about-text {
    max-width: 720px;
    margin-top: 44px;
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--gray);
    line-height: 1.45;
}

.capabilities {
    padding: 220px 0;
}

.capability {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    cursor: none;
}

.capability span {
    width: 80px;
    color: var(--gray);
    font-size: 14px;
}

.capability h3 {
    flex: 1;
    font-family: "Inter", sans-serif;
    font-size: clamp(32px, 2.8vw, 54px);
    font-weight: 700;
    letter-spacing: -.012em;
    line-height: 1.1;
}

.capability p {
    width: 420px;
    color: var(--gray);
    line-height: 1.6;
}

.capability h3,
.capability p,
.capability span {
    transition: var(--transition);
}

.capability:hover {
    padding-left: 24px;
    background: rgba(255,255,255,.015);
}

.capability:hover h3 {
    color: var(--white);
    transform: translateX(14px);
}

.capability:hover span { color: var(--white); }
.capability:hover p { color: #d5d5d5; }

.selected-work {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.01), transparent);
}

.selected-work::before {
    content: "WORK";
    position: absolute;
    right: -4vw;
    bottom: -6vh;
    font-family: "General Sans", sans-serif;
    font-size: clamp(140px, 22vw, 360px);
    font-weight: 700;
    letter-spacing: -0.08em;
    color: rgba(255,255,255,.025);
    pointer-events: none;
}

.selected-work h2 {
    max-width: 1040px;
    font-size: clamp(42px, 5.8vw, 88px);
}

.work-link,
.contact-link {
    display: inline-flex;
    margin-top: 48px;
    font-weight: 600;
}

.work-link { font-size: 16px; }
.contact-link { font-size: clamp(20px, 2vw, 28px); }
.work-link:hover,
.contact-link:hover { transform: translateX(8px); }

.about h2 {
    max-width: 1040px;
    font-size: clamp(42px, 5.8vw, 88px);
}

.contact h2 {
    max-width: 860px;
    font-size: clamp(44px, 6vw, 88px);
}

.footer {
    padding: 44px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray);
    font-size: 14px;
}

.footer-inner p {
    font-family: "General Sans", sans-serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .08em;
}

.hero-title span { transform: translateY(120%); }
.hero-label,
.hero-text,
.hero-link,
.scroll-hint { opacity: 0; }

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
    transition: width .25s ease, height .25s ease, opacity .25s ease, border-color .25s ease;
}

.cursor.is-active {
    width: 58px;
    height: 58px;
}

.cursor span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--white);
    opacity: 0;
    transition: opacity .2s ease;
}

.cursor.is-active span { opacity: 1; }


/* ==========================
   Typography Safety Override
   Turkish character spacing fix
========================== */

@media (max-width: 768px) {
    .hero-inner {
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(42px, 11.8vw, 68px);
        line-height: 1.18;
        letter-spacing: -.014em;
    }

    .manifesto h2,
    .selected-work h2,
    .about h2,
    .contact h2 {
        font-size: clamp(38px, 10.5vw, 64px);
        line-height: 1.16;
        letter-spacing: -.014em;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(38px, 12vw, 56px);
        line-height: 1.2;
    }

    .manifesto h2,
    .selected-work h2,
    .about h2,
    .contact h2 {
        font-size: clamp(34px, 10.5vw, 52px);
        line-height: 1.18;
    }
}
.capability p {
    opacity: 1;
    visibility: visible;
}

/* ===== ChatGPT final polish overrides ===== */
.hero-inner{padding-top:90px!important;}
.hero-title{
max-width:1040px!important;
font-size:clamp(48px,6.5vw,96px)!important;
line-height:1.16!important;
letter-spacing:-0.018em!important;
}
.hero-title span{display:block;overflow:visible!important;padding-bottom:.08em;}
.hero-text{max-width:560px!important;margin-top:54px!important;}
.hero-parrot-wrap{opacity:.12!important;}
.scroll-hint{gap:18px!important;margin-top:72px!important;opacity:.3!important;}
.scroll-hint span{width:56px!important;background:#5d5d5d!important;}
.scroll-hint p{
white-space:nowrap;
font-size:11px;
letter-spacing:.32em;
color:#888;
}
.manifesto h2,.selected-work h2,.about h2,.contact h2{
font-size:clamp(42px,5.8vw,88px)!important;
line-height:1.14!important;
letter-spacing:-0.018em!important;
max-width:1040px!important;
}
.capability p{opacity:1!important;visibility:visible!important;}


/* ===== ChatGPT spacing compact overrides ===== */

section {
    padding: 110px 0;
}

.hero {
    min-height: 100vh;
    margin-bottom: 0;
}

.hero-inner {
    padding-top: 86px !important;
}

.manifesto,
.selected-work,
.about,
.contact {
    min-height: auto !important;
    align-items: flex-start !important;
}

.manifesto {
    padding: 95px 0 110px !important;
}

.capabilities {
    padding: 105px 0 120px !important;
}

.selected-work {
    padding: 120px 0 !important;
}

.about {
    padding: 120px 0 !important;
}

.contact {
    min-height: auto !important;
    padding: 120px 0 140px !important;
}

.capability {
    padding: 34px 0 !important;
}

.section-label {
    margin-bottom: 34px;
}

.manifesto-text,
.selected-work-text,
.about-text {
    margin-top: 34px;
}

.work-link,
.contact-link {
    margin-top: 38px;
}

@media (max-width: 768px) {
    section {
        padding: 82px 0;
    }

    .hero-inner {
        padding-top: 92px !important;
    }

    .manifesto,
    .selected-work,
    .about,
    .contact {
        padding: 84px 0 !important;
    }

    .capabilities {
        padding: 84px 0 96px !important;
    }

    .capability {
        padding: 28px 0 !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 72px 0;
    }

    .manifesto,
    .selected-work,
    .about,
    .contact {
        padding: 74px 0 !important;
    }

    .capabilities {
        padding: 74px 0 86px !important;
    }
}


/* ===== ChatGPT mobile compact spacing overrides v2 ===== */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: min(92%, var(--container));
    }

    .site-header {
        padding: 16px 0 !important;
    }

    .brand {
        font-size: 13px;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    section {
        padding: 64px 0 !important;
    }

    .hero {
        min-height: auto !important;
        display: block !important;
        padding: 92px 0 56px !important;
        overflow: hidden;
    }

    .hero-inner {
        padding-top: 0 !important;
    }

    .hero-label {
        margin-bottom: 24px !important;
        font-size: 11px;
        letter-spacing: .16em;
    }

    .hero-title {
        max-width: 100% !important;
        font-size: clamp(40px, 11vw, 54px) !important;
        line-height: 1.14 !important;
        letter-spacing: -.018em !important;
    }

    .hero-title span {
        padding-bottom: .05em !important;
    }

    .hero-text {
        max-width: 100% !important;
        margin-top: 28px !important;
        font-size: 16px !important;
        line-height: 1.48 !important;
    }

    .hero-link {
        margin-top: 28px !important;
        font-size: 15px;
    }

    .scroll-hint {
        margin-top: 44px !important;
        gap: 14px !important;
    }

    .scroll-hint span {
        width: 48px !important;
    }

    .scroll-hint p {
        font-size: 10px !important;
        letter-spacing: .26em !important;
    }

    .hero-parrot-wrap {
        right: -18vw !important;
        bottom: 70px !important;
        width: min(58vw, 300px) !important;
        opacity: .10 !important;
    }

    .manifesto,
    .selected-work,
    .about,
    .contact {
        min-height: auto !important;
        display: block !important;
        padding: 68px 0 !important;
        align-items: flex-start !important;
    }

    .manifesto {
        padding-top: 64px !important;
    }

    .capabilities {
        padding: 68px 0 74px !important;
    }

    .section-label {
        margin-bottom: 28px !important;
        font-size: 11px !important;
        letter-spacing: .18em;
    }

    .manifesto h2,
    .selected-work h2,
    .about h2,
    .contact h2 {
        max-width: 100% !important;
        font-size: clamp(36px, 10vw, 50px) !important;
        line-height: 1.14 !important;
        letter-spacing: -.018em !important;
    }

    .manifesto-text,
    .selected-work-text,
    .about-text {
        max-width: 100% !important;
        margin-top: 24px !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .capability {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 26px 0 !important;
    }

    .capability span {
        width: auto !important;
        font-size: 13px;
    }

    .capability h3 {
        width: 100% !important;
        font-size: clamp(30px, 8.5vw, 40px) !important;
        line-height: 1.08 !important;
    }

    .capability p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .selected-work {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .selected-work::before {
        font-size: clamp(90px, 32vw, 160px) !important;
        right: -10vw !important;
        bottom: -2vh !important;
    }

    .work-link,
    .contact-link {
        margin-top: 30px !important;
    }

    .contact-link {
        font-size: 19px !important;
    }

    .footer {
        padding: 32px 0 !important;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cursor,
    .mouse-glow {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 84px 0 48px !important;
    }

    .hero-title {
        font-size: clamp(38px, 11.5vw, 48px) !important;
        line-height: 1.15 !important;
    }

    .hero-text {
        font-size: 15.5px !important;
    }

    .scroll-hint {
        margin-top: 38px !important;
    }

    .manifesto,
    .selected-work,
    .about,
    .contact {
        padding: 58px 0 !important;
    }

    .capabilities {
        padding: 58px 0 64px !important;
    }

    .capability {
        padding: 24px 0 !important;
    }

    .manifesto h2,
    .selected-work h2,
    .about h2,
    .contact h2 {
        font-size: clamp(34px, 10.5vw, 46px) !important;
    }
}

/* ==========================
   Header WhatsApp Button
========================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-cta {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.02);
    transition: var(--transition);
}

.whatsapp-cta svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.whatsapp-cta:hover {
    color: #25D366;
    border-color: rgba(37,211,102,.45);
    background: rgba(37,211,102,.08);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header-actions {
        margin-left: auto;
    }

    .whatsapp-cta {
        width: 38px;
        height: 38px;
    }

    .whatsapp-cta svg {
        width: 18px;
        height: 18px;
    }
}
/* ==========================
   Contact Links
========================== */

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 48px;
}

.contact-links .contact-link {
    margin-top: 0;
}

.whatsapp-contact-link:hover {
    color: #25D366;
}/* ==========================
   Mobile Spacing Final Tightening
========================== */

@media (max-width: 768px) {

    section {
        padding: 48px 0 !important;
    }

    .hero {
        padding: 78px 0 38px !important;
        min-height: auto !important;
    }

    .hero-inner {
        padding-top: 0 !important;
    }

    .hero-text {
        margin-top: 22px !important;
    }

    .hero-link {
        margin-top: 24px !important;
    }

    .scroll-hint {
        margin-top: 34px !important;
    }

    .manifesto,
    .selected-work,
    .about,
    .contact {
        padding: 48px 0 !important;
        min-height: auto !important;
    }

    .capabilities {
        padding: 48px 0 56px !important;
    }

    .capability {
        padding: 22px 0 !important;
        gap: 10px !important;
    }

    .section-label {
        margin-bottom: 22px !important;
    }

    .manifesto-text,
    .selected-work-text,
    .about-text {
        margin-top: 20px !important;
    }

    .work-link,
    .contact-link {
        margin-top: 0 !important;
    }

    .contact-links {
        margin-top: 30px !important;
        gap: 24px !important;
    }

    .footer {
        padding: 28px 0 !important;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 72px 0 34px !important;
    }

    .manifesto,
    .selected-work,
    .about,
    .contact {
        padding: 42px 0 !important;
    }

    .capabilities {
        padding: 42px 0 48px !important;
    }

    .capability {
        padding: 20px 0 !important;
    }

    .contact-links {
        margin-top: 28px !important;
        gap: 22px !important;
    }
}/* ==========================
   Mobile Hero Label Position
========================== */

@media (max-width: 768px) {
    .hero-label {
        margin-top: 18px !important;
    }
}

@media (max-width: 480px) {
    .hero-label {
        margin-top: 22px !important;
    }
}