:root{
    --web-ink:#0b1020;
    --web-muted:#5b647a;
    --web-accent:#6d28d9;
    --web-accent-2:#14b8a6;
    --web-glass:rgba(255,255,255,.72);
    --web-glass-2:rgba(255,255,255,.55);
    --web-border:rgba(15,23,42,.10);
    --web-shadow:0 18px 50px rgba(15,23,42,.10);
}

html,body{height:100%}

.web-body{
    color:var(--web-ink);
    background:
        radial-gradient(1200px 800px at 8% 8%, rgba(109,40,217,.14), transparent 60%),
        radial-gradient(1000px 700px at 88% 0%, rgba(20,184,166,.12), transparent 58%),
        radial-gradient(900px 700px at 70% 88%, rgba(14,165,233,.08), transparent 55%),
        #fafafa;
    overflow-x:hidden;
}

.web-main{position:relative; z-index:2}
.web-header{position:sticky; top:0; z-index:10; backdrop-filter:blur(10px); background:rgba(250,250,250,.78); border-bottom:1px solid rgba(15,23,42,.06)}
.web-footer{position:relative; z-index:2; border-top:1px solid rgba(15,23,42,.08); background:rgba(250,250,250,.85); backdrop-filter:blur(10px)}

.skip-link{
    position:absolute;
    left:-9999px;
    top:.75rem;
    z-index:9999;
    background:#111827;
    color:#fff;
    padding:.55rem .75rem;
    border-radius:.75rem;
    text-decoration:none;
}
.skip-link:focus{left:.75rem}

.brand-link{
    font-weight:900;
    letter-spacing:-.03em;
    text-decoration:none;
    color:var(--web-ink);
}
.brand-link:hover{color:var(--web-accent)}
.brand-pill{
    font-size:.9rem;
    color:var(--web-accent);
    background:rgba(109,40,217,.10);
    border:1px solid rgba(109,40,217,.18);
    padding:.15rem .6rem;
    border-radius:999px;
    white-space:nowrap;
}

.nav-link-web{
    text-decoration:none;
    color:var(--web-ink);
    opacity:.86;
    font-weight:600;
}
.nav-link-web:hover{opacity:1; color:var(--web-accent)}
.nav-link-web.is-active{
    opacity:1;
    color:var(--web-accent);
    text-decoration:underline;
    text-underline-offset:.35em;
}

.web-details summary{list-style:none; cursor:pointer}
.web-details summary::-webkit-details-marker{display:none}

.kicker{
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--web-muted);
    font-size:.85rem;
}

.cta-link{
    font-weight:800;
    text-decoration:none;
    color:var(--web-ink);
    border-bottom:2px solid rgba(109,40,217,.22);
}
.cta-link:hover{
    color:var(--web-accent);
    border-bottom-color:rgba(109,40,217,.65);
}
.cta-inline{
    font-weight:800;
    color:var(--web-accent);
    white-space:nowrap;
}

.web-card{
    background:var(--web-glass);
    border:1px solid var(--web-border);
    border-radius:1.25rem;
    padding:1.25rem;
    box-shadow:var(--web-shadow);
}

.web-card.soft{
    background:var(--web-glass-2);
}

.web-card:hover{
    transform:translateY(-2px);
}

.web-card, .web-card:hover{
    transition:transform 260ms ease, box-shadow 260ms ease;
}

.web-divider{
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(15,23,42,.18), transparent);
}

.feature-line{
    display:flex;
    gap:.75rem;
    align-items:flex-start;
}
.feature-ico{
    width:1.85rem;
    height:1.85rem;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(20,184,166,.12);
    border:1px solid rgba(20,184,166,.18);
    color:#0f766e;
    flex:0 0 auto;
}

.module-link{
    text-decoration:none;
    color:var(--web-ink);
    border-bottom:1px solid rgba(15,23,42,.12);
    padding-bottom:.1rem;
    font-weight:800;
}
.module-link:hover{color:var(--web-accent); border-bottom-color:rgba(109,40,217,.45)}

.muted{color:var(--web-muted)}

.bg-orb{
    position:fixed;
    width:34rem;
    height:34rem;
    border-radius:999px;
    filter:blur(42px);
    opacity:.55;
    z-index:0;
    pointer-events:none;
    transform:translate3d(0,0,0);
    animation:web-float 12s ease-in-out infinite;
}
.orb-1{top:-12rem; left:-14rem; background:radial-gradient(circle at 30% 30%, rgba(109,40,217,.55), transparent 60%)}
.orb-2{top:-10rem; right:-14rem; background:radial-gradient(circle at 30% 30%, rgba(20,184,166,.48), transparent 62%); animation-duration:14s}
.orb-3{bottom:-16rem; left:15%; background:radial-gradient(circle at 30% 30%, rgba(14,165,233,.35), transparent 62%); animation-duration:16s}

@keyframes web-float{
    0%,100%{transform:translate3d(0,0,0) scale(1)}
    50%{transform:translate3d(1.5rem,-1.1rem,0) scale(1.03)}
}

[data-reveal]{
    opacity:0;
    transform:translateY(14px);
    transition:opacity 550ms ease, transform 550ms ease;
    will-change:opacity,transform;
}
[data-reveal].is-in{
    opacity:1;
    transform:translateY(0);
}

.footer-title{
    font-weight:900;
    letter-spacing:-.02em;
    margin-bottom:.25rem;
}
.footer-link{
    text-decoration:none;
    color:var(--web-muted);
    font-weight:700;
}
.footer-link:hover{color:var(--web-accent)}
.footer-brand{font-weight:900; letter-spacing:-.02em}

.form-note{
    font-size:.92rem;
    color:var(--web-muted);
}
.form-status{
    border-radius:1rem;
    padding:.75rem 1rem;
    border:1px solid rgba(15,23,42,.10);
    background:rgba(255,255,255,.70);
}
.form-status.ok{border-color:rgba(20,184,166,.25)}
.form-status.bad{border-color:rgba(239,68,68,.25)}

@media (prefers-reduced-motion: reduce){
    .bg-orb{animation:none}
    .web-card, .web-card:hover{transition:none; transform:none}
    [data-reveal]{transition:none; transform:none; opacity:1}
}


