:root{
    --bg:#f8fafc;
    --panel:#ffffff;
    --text:#0f172a;
    --muted:#64748b;
    --blue:#2563eb;
    --blue-light:#38bdf8;
    --border:rgba(15,23,42,.10);
    --shadow:0 30px 80px rgba(15,23,42,.12);
}

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

body{
    font-family:Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,.20), transparent 32rem),
        radial-gradient(circle at top right, rgba(37,99,235,.14), transparent 34rem),
        linear-gradient(180deg,#ffffff 0%,#f8fafc 55%,#eef6ff 100%);
    color:var(--text);
    min-height:100vh;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.45), transparent 70%);
}

.container{
    width:min(92%,1200px);
    margin:0 auto;
}

.navbar{
    position:sticky;
    top:0;
    z-index:50;
    padding:18px 0;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--border);
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:900;
    letter-spacing:-.04em;
    color:#111827;
}

.logo::before{
    content:"";
    width:38px;
    height:38px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--blue-light),var(--blue));
    box-shadow:0 14px 30px rgba(37,99,235,.28);
}

.logo-blue{
    color:var(--blue);
}

nav{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px;
    border:1px solid var(--border);
    border-radius:999px;
    background:rgba(255,255,255,.82);
    box-shadow:0 12px 35px rgba(15,23,42,.06);
}

nav a{
    color:#475569;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    padding:10px 16px;
    border-radius:999px;
    transition:.2s ease;
}

nav a:hover{
    color:#0f172a;
    background:#eef6ff;
}

.hero{
    position:relative;
    overflow:hidden;
    padding:135px 0 110px;
    text-align:center;
}

.hero h1{
    max-width:980px;
    margin:0 auto 24px;
    font-size:clamp(46px,7vw,84px);
    line-height:.95;
    font-weight:950;
    letter-spacing:-.075em;
    background:linear-gradient(135deg,#0f172a 0%,#2563eb 48%,#38bdf8 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero p{
    max-width:760px;
    margin:0 auto;
    font-size:clamp(18px,2vw,22px);
    line-height:1.8;
    color:#475569;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:42px;
    min-height:54px;
    padding:0 28px;
    border-radius:16px;
    background:linear-gradient(135deg,#38bdf8,#2563eb);
    color:white;
    text-decoration:none;
    font-weight:900;
    box-shadow:0 20px 55px rgba(37,99,235,.28);
    transition:.2s ease;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 28px 70px rgba(37,99,235,.36);
}

.page-section{
    padding:110px 0;
}

.page-section .container{
    padding:42px;
    border:1px solid var(--border);
    border-radius:34px;
    background:rgba(255,255,255,.84);
    box-shadow:var(--shadow);
}

.page-section h1{
    font-size:clamp(42px,6vw,72px);
    letter-spacing:-.06em;
}

@media(max-width:760px){
    .nav-inner{flex-direction:column}
    nav{width:100%;justify-content:center;flex-wrap:wrap;border-radius:24px}
    .hero{padding:90px 0 80px}
}

.logo-link{
    color:inherit;
    text-decoration:none;
}

.main-nav{
    position:relative;
}

.nav-dropdown{
    position:relative;
}

.nav-drop-btn{
    cursor:pointer;
}

.nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 14px);
    left:0;
    min-width:240px;
    padding:10px;
    border:1px solid var(--border);
    border-radius:20px;
    background:rgba(255,255,255,.96);
    box-shadow:0 24px 70px rgba(15,23,42,.16);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.18s ease;
    z-index:100;
}

.nav-dropdown-menu a{
    display:block;
    padding:12px 14px;
    color:#475569;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    white-space:nowrap;
}

.nav-dropdown-menu a:hover{
    color:#0f172a;
    background:#eef6ff;
}

.nav-dropdown:hover .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-cta{
    background:linear-gradient(135deg,#38bdf8,#2563eb);
    color:white !important;
    box-shadow:0 12px 30px rgba(37,99,235,.22);
}

@media(max-width:760px){
    .nav-dropdown{
        width:100%;
    }

    .nav-dropdown-menu{
        position:static;
        display:none;
        margin-top:8px;
        width:100%;
        box-shadow:none;
        transform:none;
        opacity:1;
        visibility:visible;
    }

    .nav-dropdown:hover .nav-dropdown-menu{
        display:block;
    }
}

.home-hero{
    position:relative;
    min-height:calc(100vh - 76px);
    display:flex;
    align-items:center;
    overflow:hidden;
}

.home-hero-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(37,99,235,.20), rgba(56,189,248,.16)),
        url('/images/hero.jpg') center/cover no-repeat;
    z-index:0;
}

.home-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.home-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 46%, rgba(255,255,255,.35) 100%);
    z-index:1;
}

.home-hero-content{
    position:relative;
    z-index:2;
    padding:100px 0;
}

.hero-eyebrow{
    display:inline-flex;
    margin-bottom:18px;
    padding:10px 16px;
    border:1px solid var(--border);
    border-radius:999px;
    background:rgba(255,255,255,.72);
    color:#2563eb;
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    box-shadow:0 14px 35px rgba(15,23,42,.08);
}

.home-hero h1{
    max-width:780px;
    font-size:clamp(48px, 7vw, 86px);
    line-height:.95;
    letter-spacing:-.075em;
    font-weight:950;
    color:#0f172a;
}

.home-hero p{
    max-width:650px;
    margin-top:24px;
    font-size:clamp(18px, 2vw, 22px);
    line-height:1.75;
    color:#475569;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:38px;
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 28px;
    border-radius:16px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.76);
    color:#0f172a;
    text-decoration:none;
    font-weight:900;
    box-shadow:0 16px 40px rgba(15,23,42,.08);
}

@media(max-width:760px){
    .home-hero{
        min-height:auto;
    }

    .home-hero-overlay{
        background:rgba(255,255,255,.88);
    }

    .home-hero-content{
        padding:80px 0;
    }
}

.site-logo{
    height:48px;
    width:auto;
    display:block;
}

.logo-link{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
}

.site-footer {
    margin-top: 80px;
    background: #0f172a;
    color: #e5e7eb;
    padding: 48px 24px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand strong {
    font-size: 1.25rem;
    color: #ffffff;
}

.footer-brand p {
    margin-top: 8px;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    color: #94a3b8;
    font-size: 0.9rem;
}