/* =========================================
   FUNDZ V4
   DIGITAL CREATIVE STUDIO
========================================= */


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

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #050a24;

    color: #f5f7ff;

    overflow-x: hidden;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --bg: #050a24;

    --bg-light: #091337;

    --card: #0a1438;

    --card-two: #0d1b49;

    --text: #f7f8ff;

    --muted: #929dbd;

    --muted-two: #697596;

    --cyan: #63dfcc;

    --blue: #4c8df6;

    --border: rgba(112, 145, 220, 0.22);

    --border-light: rgba(112, 145, 220, 0.35);

}


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

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(5, 10, 36, 0.94);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border);

}


.nav-container {

    min-height: 110px;

    max-width: 1400px;

    margin: auto;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 18px;

    text-decoration: none;

}


.logo-mark {

    width: 66px;

    height: 66px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #4d8df5,
            #63dfcc
        );

    color: white;

    font-size: 38px;

    font-weight: 800;

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-text strong {

    font-size: 32px;

    line-height: 1;

    letter-spacing: -1px;

}


.logo-text span {

    margin-top: 10px;

    color: var(--cyan);

    font-size: 11px;

    letter-spacing: 4px;

}


/* =========================================
   DESKTOP NAV
========================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.desktop-nav a {

    color: #c2c9dd;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.25s ease;

}


.desktop-nav a:hover {

    color: var(--cyan);

}


/* =========================================
   MENU BUTTON
========================================= */

.menu-button {

    display: none;

    width: 55px;

    height: 55px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.menu-button span {

    display: block;

    width: 38px;

    height: 3px;

    margin: 7px auto;

    background: white;

    transition: 0.3s;

}


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

.mobile-menu {

    display: none;

    padding: 15px 7vw 35px;

    background: #050a24;

}


.mobile-menu.active {

    display: block;

}


.mobile-menu a {

    display: block;

    padding: 25px 10px;

    color: #c7cde0;

    font-size: 24px;

    text-decoration: none;

    border-bottom: 1px solid var(--border);

}


.mobile-menu a:hover {

    color: var(--cyan);

}


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

.hero {

    min-height: calc(100vh - 110px);

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(55, 120, 255, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(35, 210, 190, 0.08),
            transparent 30%
        );

}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

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

    background-size: 70px 70px;

}


.hero-content {

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding: 130px 7vw;

    position: relative;

    z-index: 1;

}


.eyebrow {

    color: var(--cyan);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 25px;

}


.hero h1 {

    max-width: 1050px;

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

    line-height: 0.96;

    letter-spacing: -6px;

    font-weight: 800;

}


.hero h1 span {

    color: var(--cyan);

}


.hero-description {

    max-width: 850px;

    margin-top: 45px;

    color: #929dbd;

    font-size: clamp(19px, 2vw, 25px);

    line-height: 1.65;

}


.hero-description strong {

    color: white;

}


.hero-buttons {

    display: flex;

    gap: 20px;

    margin-top: 45px;

}


.primary-button,
.secondary-button {

    min-height: 65px;

    padding: 0 32px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 800;

    transition: 0.3s;

}


.primary-button {

    background: var(--cyan);

    color: #061027;

}


.primary-button:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(99,223,204,0.2);

}


.secondary-button {

    border: 1px solid var(--border-light);

    color: white;

}


.secondary-button:hover {

    border-color: var(--cyan);

    color: var(--cyan);

}


.hero-services {

    display: flex;

    gap: 90px;

    margin-top: 100px;

}


.hero-services div {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.hero-services strong {

    color: var(--cyan);

    font-size: 30px;

}


.hero-services span {

    color: var(--muted-two);

}


/* =========================================
   GENERAL SECTION
========================================= */

.section {

    max-width: 1400px;

    margin: auto;

    padding: 140px 7vw;

}


.section-header {

    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 25px;

    margin-bottom: 65px;

}


.section-number {

    color: var(--cyan);

    font-size: 18px;

    font-weight: 800;

}


.section-header h2 {

    max-width: 900px;

    font-size: clamp(48px, 6vw, 85px);

    line-height: 1;

    letter-spacing: -4px;

}


.section-header h2 span {

    color: var(--cyan);

}


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

.services-section {

    border-top: 1px solid var(--border);

}


.services-grid {

    display: grid;

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

    gap: 25px;

}


.service-card {

    min-height: 430px;

    padding: 40px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(13,27,73,0.9),
            rgba(7,15,44,0.9)
        );

    transition: 0.35s;

}


.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(99,223,204,0.55);

}


.service-number {

    color: var(--cyan);

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 80px;

}


.service-card h3 {

    font-size: 30px;

    margin-bottom: 20px;

}


.service-card p {

    color: var(--muted);

    line-height: 1.7;

}


.service-card ul {

    margin-top: 30px;

    list-style: none;

}


.service-card li {

    color: #bac3db;

    padding: 9px 0;

    border-bottom: 1px solid var(--border);

}


/* =========================================
   WORK
========================================= */

.work-section {

    border-top: 1px solid var(--border);

}


.work-grid {

    display: grid;

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

    gap: 35px;

}


.project-card {

    border: 1px solid var(--border);

    border-radius: 24px;

    overflow: hidden;

    background: var(--card);

}


.project-image {

    height: 450px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #0a1438;

}


.project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s;

}


.project-card:hover .project-image img {

    transform: scale(1.04);

}


.project-image span {

    position: absolute;

    left: 25px;

    bottom: 25px;

    padding: 13px 18px;

    background: rgba(5,10,36,0.9);

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    border-radius: 8px;

}


.project-visual {

    width: 100%;

    height: 450px;

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #11295f,
            #0b3d61
        );

}


.project-visual-three {

    background:
        linear-gradient(
            135deg,
            #101e4c,
            #163f6c
        );

}


.project-visual span {

    color: var(--cyan);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.project-visual h3 {

    margin-top: 25px;

    font-size: clamp(40px, 5vw, 70px);

    line-height: 0.95;

}


.project-visual em {

    color: var(--cyan);

    font-style: normal;

}


.project-content {

    padding: 30px;

}


.project-content p {

    color: var(--cyan);

    font-weight: 800;

}


.project-content h3 {

    font-size: 27px;

    margin: 12px 0;

}


.project-content span {

    color: var(--muted);

    line-height: 1.6;

}


/* =========================================
   BOOKS
========================================= */

.books-section {

    border-top: 1px solid var(--border);

}


.books-intro {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    margin-bottom: 70px;

}


.books-intro > div {

    max-width: 750px;

}


.books-intro p {

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 15px;

}


.amazon-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 18px 25px;

    background: var(--cyan);

    color: #061027;

    text-decoration: none;

    border-radius: 10px;

    font-weight: 800;

    transition: 0.3s;

}


.amazon-button:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(99,223,204,0.18);

}


.books-grid {

    display: grid;

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

    gap: 25px;

}


.book-card {

    overflow: hidden;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 22px;

    transition: 0.35s;

}


.book-card:hover {

    transform: translateY(-10px);

    border-color: rgba(99,223,204,0.6);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.3);

}


.book-image {

    height: 450px;

    padding: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(50,100,190,0.4),
            transparent 70%
        );

}


.book-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: transform 0.5s;

}


.book-card:hover .book-image img {

    transform: scale(1.04);

}


.book-info {

    padding: 30px;

}


.book-category {

    display: block;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.book-info h3 {

    font-size: 27px;

    line-height: 1.1;

    margin-bottom: 15px;

}


.book-info p {

    min-height: 55px;

    color: var(--muted);

    line-height: 1.6;

    margin-bottom: 25px;

}


.book-button {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 18px;

    border: 1px solid var(--border-light);

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.25s;

}


.book-button span {

    color: var(--cyan);

    font-size: 20px;

}


.book-button:hover {

    background: var(--cyan);

    color: #061027;

    border-color: var(--cyan);

}


.book-button:hover span {

    color: #061027;

}


/* =========================================
   ABOUT
========================================= */

.about-section {

    border-top: 1px solid var(--border);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1.2fr 1fr;

    gap: 100px;

}


.large-text {

    font-size: clamp(38px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;

}


.about-text p {

    color: var(--muted);

    font-size: 19px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.text-link {

    display: inline-flex;

    gap: 15px;

    margin-top: 20px;

    color: var(--cyan);

    text-decoration: none;

    font-weight: 800;

}


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

.contact-section {

    padding: 150px 7vw;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(80,150,255,0.12),
            transparent 35%
        );

    border-top: 1px solid var(--border);

}


.contact-container {

    max-width: 1100px;

    margin: auto;

}


.contact-section h2 {

    font-size: clamp(60px, 9vw, 125px);

    line-height: 0.9;

    letter-spacing: -6px;

}


.contact-section h2 span {

    color: var(--cyan);

}


.contact-description {

    max-width: 750px;

    color: var(--muted);

    font-size: 21px;

    line-height: 1.7;

    margin: 45px 0 60px;

}


/* =========================================
   FORM
========================================= */

.contact-form {

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: rgba(8,17,50,0.7);

}


.form-row {

    display: grid;

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

    gap: 20px;

}


.form-group {

    margin-bottom: 25px;

}


.form-group label {

    display: block;

    margin-bottom: 10px;

    color: #dce2f1;

    font-weight: 700;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid var(--border-light);

    border-radius: 10px;

    padding: 17px;

    background: #060d2a;

    color: white;

    outline: none;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--cyan);

}


.form-group textarea {

    resize: vertical;

}


.submit-button {

    width: 100%;

    min-height: 65px;

    border: 0;

    border-radius: 10px;

    background: var(--cyan);

    color: #061027;

    font-weight: 800;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;

}


.submit-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(99,223,204,0.2);

}


.submit-button span {

    margin-left: 10px;

}


.form-status {

    text-align: center;

    margin-top: 20px;

    color: var(--cyan);

}


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

.direct-contact {

    display: grid;

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

    gap: 30px;

    margin-top: 60px;

}


.direct-contact div {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.direct-contact span {

    color: var(--muted-two);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;

}


.direct-contact a {

    color: white;

    text-decoration: none;

    font-size: 16px;

}


.direct-contact a:hover {

    color: var(--cyan);

}


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

.site-footer {

    border-top: 1px solid var(--border);

    background: #03071c;

}


.footer-container {

    max-width: 1400px;

    margin: auto;

    padding: 60px 7vw;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 15px;

}


.footer-brand .logo-mark {

    width: 50px;

    height: 50px;

    font-size: 27px;

    border-radius: 14px;

}


.footer-brand div:last-child {

    display: flex;

    flex-direction: column;

}


.footer-brand strong {

    font-size: 27px;

}


.footer-brand span {

    color: var(--cyan);

    font-size: 9px;

    letter-spacing: 2px;

    margin-top: 6px;

}


.footer-links {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin: 45px 0;

}


.footer-links a {

    color: var(--muted);

    text-decoration: none;

}


.footer-links a:hover {

    color: var(--cyan);

}


.copyright {

    color: var(--muted-two);

    font-size: 14px;

}


/* =========================================
   ANIMATION
========================================= */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


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

@media (max-width: 1000px) {

    .desktop-nav {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .services-grid,
    .books-grid {

        grid-template-columns:
            1fr;

    }


    .work-grid {

        grid-template-columns:
            1fr;

    }


    .books-intro {

        display: block;

    }


    .amazon-button {

        margin-top: 30px;

    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }

}


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

@media (max-width: 650px) {

    .nav-container {

        min-height: 95px;

        padding: 0 25px;

    }


    .logo-mark {

        width: 58px;

        height: 58px;

        border-radius: 17px;

        font-size: 32px;

    }


    .logo-text strong {

        font-size: 28px;

    }


    .logo-text span {

        font-size: 8px;

        letter-spacing: 2.5px;

    }


    .hero-content {

        padding: 100px 30px;

    }


    .hero h1 {

        font-size: 52px;

        letter-spacing: -3px;

    }


    .hero-description {

        font-size: 18px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .primary-button,
    .secondary-button {

        width: 100%;

    }


    .hero-services {

        display: grid;

        grid-template-columns:
            1fr;

        gap: 25px;

        margin-top: 70px;

    }


    .section {

        padding: 90px 30px;

    }


    .section-header {

        display: block;

    }


    .section-number {

        display: block;

        margin-bottom: 20px;

    }


    .section-header h2 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .service-card {

        min-height: auto;

        padding: 30px;

    }


    .service-number {

        margin-bottom: 50px;

    }


    .project-image,
    .project-visual {

        height: 360px;

    }


    .project-visual {

        padding: 35px;

    }


    .project-visual h3 {

        font-size: 48px;

    }


    .book-image {

        height: 430px;

    }


    .book-info {

        padding: 25px;

    }


    .books-intro p {

        font-size: 17px;

    }


    .amazon-button {

        width: 100%;

        justify-content: center;

        text-align: center;

    }


    .large-text {

        font-size: 43px;

    }


    .contact-section {

        padding: 100px 30px;

    }


    .contact-section h2 {

        font-size: 58px;

        letter-spacing: -3px;

    }


    .form-row {

        grid-template-columns:
            1fr;

    }


    .contact-form {

        padding: 25px;

    }


    .direct-contact {

        grid-template-columns:
            1fr;

        gap: 25px;

    }


    .footer-container {

        padding: 50px 30px;

    }

}
