/* ==========================================================
   TeacherDox v1.0
   Design System
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#1f1f1f;

    line-height:1.7;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

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

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

ul{
    list-style:none;
}

button{
    font:inherit;
    cursor:pointer;
}

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

:root{

    --black:#1F1F1F;

    --gray:#6B7280;

    --light:#F7F7F7;

    --border:#E5E7EB;

    --white:#FFFFFF;

    --container:1180px;

    --radius:14px;

    --transition:.25s ease;

}

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

.container{

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

    margin:auto;

}

.narrow{

    max-width:760px;

    margin:auto;

}

.center{

    text-align:center;

}

.section{

    padding:120px 0;

}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1{

    font-size:clamp(3.4rem,8vw,6rem);

    line-height:1.05;

    letter-spacing:-3px;

    font-weight:800;

}

h2{

    font-size:clamp(2.2rem,5vw,3.5rem);

    line-height:1.15;

    letter-spacing:-1px;

    font-weight:700;

    margin-bottom:20px;

}

h3{

    font-size:1.3rem;

    font-weight:700;

}

p{

    color:var(--gray);

    font-size:1.08rem;

}

.section-label{

    font-size:.82rem;

    text-transform:uppercase;

    letter-spacing:2px;

    color:var(--gray);

    margin-bottom:18px;

    font-weight:600;

}

.section-description{

    max-width:700px;

    margin:auto;

}

/* ==========================================================
   BUTTONS
========================================================== */

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    background:var(--black);

    color:white;

    border-radius:var(--radius);

    font-weight:600;

    transition:var(--transition);

}

.primary-btn:hover{

    opacity:.9;

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

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

    border-radius:var(--radius);

    background:white;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:var(--light);

}

/* ==========================================================
   ANNOUNCEMENT
========================================================== */

.announcement-bar{

    background:var(--black);

    color:white;

    text-align:center;

    padding:12px;

    font-size:.9rem;

}

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

header{

    position:sticky;

    top:0;

    background:white;

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

    z-index:1000;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:86px;

}

.logo{

    height:48px;

}

.nav-menu{

    display:flex;

    gap:38px;

    align-items:center;

}

.nav-menu a{

    font-weight:500;

    transition:var(--transition);

}

.nav-menu a:hover{

    color:black;

}

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

.hero{

    padding:120px 0 90px;

}

.hero-container{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.hero-logo{

    width:170px;

    margin-bottom:40px;

}

.hero-company{

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

    color:var(--gray);

    margin-bottom:20px;

}

.hero-subtitle{

    font-size:1.5rem;

    margin-top:22px;

    color:var(--black);

}

.hero-description{

    max-width:720px;

    margin:28px auto 42px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}/* ==========================================================
   WORKFLOW
========================================================== */

.workflow{

    padding:40px 0 120px;

}

.workflow-flow{

    max-width:760px;

    margin:0 auto;

}

.flow-box{

    background:#ffffff;

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

    border-radius:var(--radius);

    padding:24px;

    text-align:center;

    font-size:1.1rem;

    font-weight:600;

}

.flow-arrow{

    text-align:center;

    font-size:2rem;

    color:var(--gray);

    padding:18px 0;

}

/* ==========================================================
   SECTION HEADING
========================================================== */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

/* ==========================================================
   PRODUCT
========================================================== */

#product{

    background:#ffffff;

}

/* ==========================================================
   STEPS
========================================================== */

.steps-grid{

    display:grid;

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

    gap:28px;

}

.step-card{

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

    border-radius:var(--radius);

    padding:40px;

    transition:var(--transition);

    background:#fff;

}

.step-card:hover{

    transform:translateY(-4px);

}

.step-number{

    display:inline-block;

    font-size:.9rem;

    font-weight:700;

    color:var(--gray);

    margin-bottom:20px;

}

.step-card h3{

    margin-bottom:16px;

}

/* ==========================================================
   BENEFITS
========================================================== */

.gray-section{

    background:var(--light);

}

.benefits-grid{

    display:grid;

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

    gap:28px;

}

.benefit-card{

    background:#fff;

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

    border-radius:var(--radius);

    padding:40px;

    transition:var(--transition);

}

.benefit-card:hover{

    transform:translateY(-4px);

}

.benefit-card h3{

    margin-bottom:16px;

}

/* ==========================================================
   PHILOSOPHY
========================================================== */

#philosophy h2{

    margin-bottom:24px;

}

/* ==========================================================
   PILOT
========================================================== */

.pilot-grid{

    display:grid;

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

    gap:24px;

    margin-top:70px;

}

.pilot-card{

    background:#fff;

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

    border-radius:var(--radius);

    padding:36px;

    text-align:center;

    transition:var(--transition);

}

.pilot-card:hover{

    transform:translateY(-4px);

}

.pilot-card h3{

    margin-bottom:14px;

}

.mt-60{

    margin-top:60px;

}

/* ==========================================================
   CTA
========================================================== */

.cta-section{

    background:#ffffff;

}

.cta-section .hero-buttons{

    margin-top:40px;

}

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

footer{

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

    margin-top:120px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding:80px 0;

}

.footer-logo{

    width:170px;

    margin-bottom:24px;

}

.footer-tagline{

    color:var(--black);

    font-weight:600;

    margin-bottom:12px;

}

.footer-small{

    color:var(--gray);

}

footer h4{

    margin-bottom:22px;

}

footer ul li{

    margin-bottom:14px;

}

footer ul a{

    color:var(--gray);

    transition:var(--transition);

}

footer ul a:hover{

    color:var(--black);

}

.footer-bottom{

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

}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 0;

}/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

@media (max-width:1100px){

    .navbar{

        flex-direction:column;

        justify-content:center;

        gap:20px;

        height:auto;

        padding:25px 0;

    }

    .nav-menu{

        gap:24px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

}

@media (max-width:900px){

    .section{

        padding:90px 0;

    }

    h1{

        font-size:3.6rem;

        letter-spacing:-2px;

    }

    h2{

        font-size:2.4rem;

    }

    .steps-grid{

        grid-template-columns:1fr;

    }

    .benefits-grid{

        grid-template-columns:1fr;

    }

    .pilot-grid{

        grid-template-columns:1fr;

    }

    .hero-logo{

        width:140px;

    }

}

@media (max-width:768px){

    .container{

        width:92%;

    }

    .hero{

        padding:90px 0 60px;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

    }

    .primary-btn,

    .secondary-btn{

        width:100%;

    }

    .nav-menu{

        flex-direction:column;

        gap:16px;

    }

    .footer-bottom-content{

        flex-direction:column;

        text-align:center;

        gap:12px;

    }

}

@media (max-width:480px){

    h1{

        font-size:2.8rem;

        line-height:1.1;

    }

    h2{

        font-size:2rem;

    }

    .section{

        padding:70px 0;

    }

    .flow-box{

        padding:18px;

    }

    .step-card,

    .benefit-card,

    .pilot-card{

        padding:28px;

    }

}

/* ==========================================================
   UTILITIES
========================================================== */

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.hidden{

    display:none;

}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero,

.section{

    animation:fadeUp .7s ease both;

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:#1F1F1F;

    color:#ffffff;

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F7F7F7;

}

::-webkit-scrollbar-thumb{

    background:#D1D5DB;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9CA3AF;

}

/* ==========================================================
   IMAGE DEFAULTS
========================================================== */

img{

    user-select:none;

    -webkit-user-drag:none;

}

/* ==========================================================
   LINKS
========================================================== */

a{

    transition:.25s ease;

}

a:hover{

    opacity:.9;

}

/* ==========================================================
   END OF FILE
========================================================== */
