/*==================================================
01. FONTS
==================================================*/

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

@font-face {
    font-family: "Archivo";
    src: url("assets/fonts/Archivo-Medium.ttf") format("truetype");
    font-weight: 500;
}

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

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

/*==================================================
02. VARIABLES
==================================================*/

:root{

    /* Brand */

    --primary:#7C3AED;
    --secondary:#22D3EE;

    /* Text */

    --black:#111111;
    --text:#666666;

    /* Surface */

    --white:#FFFFFF;
    --light:#F7F8FC;
    --border:#ECECEC;

    /* Layout */

    --container:1280px;

    --radius:999px;

    --section-space:120px;

    /* Animation */

    --transition:.35s cubic-bezier(.65,0,.35,1);

    --shadow:0 12px 40px rgba(17,17,17,.08);

}

/*==================================================
03. RESET
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Archivo",sans-serif;

    color:var(--black);

    background:var(--white);

    line-height:1.6;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

/*==================================================
04. GLOBAL
==================================================*/

.container{

    width:100%;

    max-width:var(--container);

    margin:0 auto;

    padding:0 32px;

}

section{

    position:relative;

    padding:var(--section-space) 0;

}

main{

    overflow:hidden;

}

/*==================================================
05. HEADER
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:88px;

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

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

    border-bottom:1px solid rgba(236,236,236,.8);

    z-index:1000;

    transition:var(--transition);

}

.header.scrolled{

    box-shadow:var(--shadow);

}

.header .container{

    height:100%;

    display:flex;

    align-items:center;

}

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

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    flex-shrink:0;

}

.logo img{

    width:40px;

    height:40px;

    object-fit:contain;

}

.logo span{

    font-size:18px;

    font-weight:700;

    color:var(--black);

    white-space:nowrap;

}

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

.nav{

    margin-left:auto;

}

.header-btn{

    position:relative;

    margin-left:40px;

    flex-shrink:0;

}

.menu-toggle{

    display:none;

    margin-left:24px;

}

/*==================================================
06. NAVIGATION
==================================================*/

.nav{

    margin-left:auto;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:8px;

}

.nav-menu li{

    display:flex;

}

/*==============================
Navigation Link
==============================*/

.nav-menu a{

    display:flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 24px;

    border-radius:999px;

    font-size:16px;

    font-weight:500;

    line-height:1;

    color:#444444;

    background:transparent;

    transition:
        background-color .30s ease,
        color .30s ease,
        transform .30s ease;

}

/*==============================
Hover
==============================*/

.nav-menu a:hover{

    background:rgba(34,211,238,.10);

    color:#111111;

}

/*==============================
Active
==============================*/

.nav-menu a.active{

    background:#7C3AED;

    color:#FFFFFF;

    font-weight:600;

}

/* Keep active state */

.nav-menu a.active:hover{

    background:#7C3AED;

    color:#FFFFFF;

}

/* Optional click animation */

.nav-menu a:active{

    transform:scale(.97);

}

/*==================================================
07. HEADER CTA
==================================================*/

.header-btn{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    width:184px;

    height:56px;

    padding:0 72px 0 24px;

    margin-left:40px;

    background:#FFFFFF;

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

    border-radius:999px;

    overflow:hidden;

    transition:var(--transition);

}

/*==============================
Text
==============================*/

.header-btn-text{

    position:relative;

    z-index:3;

    font-size:16px;

    font-weight:600;

    color:var(--black);

    transition:var(--transition);

}

/*==============================
Animated Circle
==============================*/

.header-btn-fill{

    position:absolute;

    top:4px;

    right:4px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:#111111;

    transition:all .35s cubic-bezier(.65,0,.35,1);

}

/*==============================
Arrow
==============================*/

.header-btn-icon{

    position:absolute;

    top:50%;

    right:19px;

    transform:translateY(-50%);

    display:flex;

    align-items:center;

    justify-content:center;

    width:18px;

    height:18px;

    color:#FFFFFF;

    z-index:3;

}

/*==============================
Hover
==============================*/

.header-btn:hover .header-btn-fill{

    width:calc(100% - 8px);

    border-radius:999px;

}

.header-btn:hover .header-btn-text{

    color:#FFFFFF;

}

/*==============================
Focus
==============================*/

.header-btn:focus{

    outline:none;

}

.header-btn:focus-visible{

    outline:none;

    box-shadow:none;

}

/*==================================================
08. HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    padding-top:180px;

    padding-bottom:120px;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        radial-gradient(circle at 10% 8%,
            rgba(68,207,245,.90) 0%,
            rgba(68,207,245,.25) 25%,
            transparent 48%),

        radial-gradient(circle at 90% 8%,
            rgba(217,76,245,.85) 0%,
            rgba(217,76,245,.20) 20%,
            transparent 45%),

        radial-gradient(circle at 50% 30%,
            rgba(107,115,248,.95) 0%,
            rgba(107,115,248,.45) 35%,
            transparent 65%),

        linear-gradient(
            135deg,
            #44CFF5 0%,
            #6B73F8 55%,
            #D94CF5 100%
        );

}

/* Bottom Glow */

.hero::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-240px;

    transform:translateX(-50%);

    width:1400px;

    height:520px;

    border-radius:50%;

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

    filter:blur(120px);

    pointer-events:none;

}

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

.hero-content{

    position:relative;

    z-index:2;

    max-width:940px;

    margin:0 auto;

    text-align:center;

}

/*==================================================
BADGE
==================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    margin-bottom:36px;

    border-radius:999px;

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

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

    backdrop-filter:blur(20px);

    color:#FFFFFF;

    font-size:15px;

    font-weight:600;

}

.hero-badge img{

    width:18px;

    height:18px;

}

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

.hero-title{

    font-size:76px;

    font-weight:700;

    line-height:1.08;

    letter-spacing:-2px;

    color:#FFFFFF;

    margin-bottom:32px;

}

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

.hero-description{

    max-width:900px;

    margin:0 auto;

    font-size:22px;

    line-height:1.8;

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

}

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

.hero-btn{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:flex-start;

    width:220px;

    height:60px;

    margin-top:56px;

    padding:0 76px 0 28px;

    background:#FFFFFF;

    border-radius:999px;

    overflow:hidden;

}

.hero-btn-text{

    position:relative;

    z-index:2;

    font-size:16px;

    font-weight:600;

    color:#111111;

    transition:var(--transition);

}

.hero-btn-fill{

    position:absolute;

    top:4px;

    right:4px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:#7C3AED;

    transition:var(--transition);

}

.hero-btn-icon{

    position:absolute;

    top:50%;

    right:21px;

    transform:translateY(-50%);

    color:#FFFFFF;

    z-index:2;

}

.hero-btn:hover .hero-btn-fill{

    width:calc(100% - 8px);

    border-radius:999px;

}

.hero-btn:hover .hero-btn-text{

    color:#FFFFFF;

}

/*==================================================
09. WHY MORPH SPACE
==================================================*/

.why-space{

    background:var(--white);

}

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

.section-header{

    max-width:960px;

    margin:0 auto 80px;

    text-align:center;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 24px;

    margin-bottom:24px;

    border-radius:999px;

    background:rgba(34,211,238,.10);

    color:#111111;

    font-size:15px;

    font-weight:600;

}

.section-title{

    font-size:64px;

    font-weight:700;

    line-height:1.08;

    letter-spacing:-2px;

    color:var(--black);

    margin-bottom:24px;

}

.section-description{

    font-size:20px;

    line-height:1.8;

    color:var(--text);

}

/*==================================================
CONTENT GRID
==================================================*/

.why-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:72px;

    align-items:start;

}

/*==================================================
LEFT CONTENT
==================================================*/

.why-content h3{

    font-size:52px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:32px;

    color:var(--black);

}

.why-content p{

    font-size:18px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:28px;

}

/*==================================================
FEATURE GRID
==================================================*/

.feature-grid{

    display:grid;

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

    gap:24px;

}

/*==================================================
FEATURE CARD
==================================================*/

.feature-card{

    position:relative;

    background:#FFFFFF;

    border:1px solid #F0F0F0;

    border-radius:24px;

    padding:36px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:0 12px 35px rgba(0,0,0,.04);

}

/* Top Gradient */

.feature-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #22D3EE,
        #6B73F8,
        #7C3AED
    );

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 50px rgba(0,0,0,.10);

}

/*==================================================
ICON
==================================================*/

.feature-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    background:#F7FAFF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

}

.feature-icon img{

    width:32px;

    height:32px;

}

/*==================================================
CARD CONTENT
==================================================*/

.feature-card h4{

    font-size:24px;

    font-weight:700;

    color:var(--black);

    margin-bottom:16px;

}

.feature-card p{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

}

