﻿/* =========================================================
   WILLSMARG PRODUCT IDENTITY LAYER FINAL
   File: wwwroot/css/ProductIdentity.css
   Purpose: global background + product-grade visual layer only.
========================================================= */

:root {
    --wsm-ink: #061b36;
    --wsm-muted: #64748b;
    --wsm-cyan: #00a8c8;
}

.wsm-body {
    background: radial-gradient(circle at 10% 20%, rgba(0,168,200,.08), transparent 40%), radial-gradient(circle at 90% 10%, rgba(0,120,255,.06), transparent 30%), #f7f9fc;
}

.wsm-main {
    position: relative;
    isolation: isolate;
}

    .wsm-main::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(rgba(11,31,58,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.045) 1px, transparent 1px);
        background-size: 60px 60px;
    }

.wsm-hero {
    position: relative;
}

    .wsm-hero::after {
        content: "";
        position: absolute;
        width: 35%;
        height: 120%;
        right: 10%;
        top: -10%;
        transform: rotate(14deg);
        background: linear-gradient(180deg, rgba(0,168,200,.10), transparent);
        pointer-events: none;
    }

.wsm-engineering-board {
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(200,220,240,.6);
    box-shadow: 0 25px 80px rgba(11,31,58,.12);
}

.wsm-cta-card {
    background: rgba(255,255,255,.9);
    box-shadow: 0 30px 80px rgba(11,31,58,.12);
}

@media (max-width: 767.98px) {
    .wsm-hero::after {
        display: none;
    }
}
