/* White Eagle Cannabis Risk OS
   Shared visual system for the marketing site and authenticated platform. */

:root {
    --we-ink: #030805;
    --we-ink-soft: #07110b;
    --we-panel: rgba(9, 24, 14, .78);
    --we-panel-solid: #0a1710;
    --we-line: rgba(139, 255, 91, .18);
    --we-line-hot: rgba(139, 255, 91, .55);
    --we-lime: #8bff5b;
    --we-lime-deep: #37d75f;
    --we-mint: #c9ffb4;
    --we-cyan: #69f7d0;
    --we-amber: #ffc45b;
    --we-white: #f3fff0;
    --we-muted: #92aa99;
    --we-danger: #ff6f78;
    --we-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    --we-body: Inter, "Segoe UI", Arial, sans-serif;
    --we-mono: "Anonymous Pro", "Cascadia Code", Consolas, monospace;
    --we-radius: 18px;
    --we-shadow: 0 28px 80px rgba(0, 0, 0, .48);
}

html {
    scroll-behavior: smooth;
    background: var(--we-ink);
}

body.we-platform {
    margin: 0;
    color: var(--we-white);
    font-family: var(--we-body);
    background:
        radial-gradient(circle at 8% 2%, rgba(57, 222, 91, .12), transparent 27rem),
        radial-gradient(circle at 92% 32%, rgba(105, 247, 208, .07), transparent 30rem),
        linear-gradient(180deg, #020604 0%, #061009 45%, #030805 100%);
    overflow-x: hidden;
}

body.we-platform::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(139, 255, 91, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 255, 91, .08) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 84%);
    mask-image: linear-gradient(to bottom, black, transparent 84%);
}

body.we-platform::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: .035;
    background-image: url("/content/images/honeycomb.png");
    background-size: 320px;
    mix-blend-mode: screen;
}

body.we-platform a {
    color: var(--we-lime);
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

body.we-platform a:hover { color: var(--we-mint); }

.we-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 20000;
    padding: 10px 14px;
    color: #031006 !important;
    background: var(--we-lime);
    border-radius: 8px;
    transform: translateY(-160%);
}

.we-skip-link:focus { transform: translateY(0); }

.we-scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 12000;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--we-lime), var(--we-cyan));
    box-shadow: 0 0 16px var(--we-lime);
}

.we-cursor-glow {
    position: fixed;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    opacity: .11;
    background: radial-gradient(circle, var(--we-lime), transparent 66%);
    transform: translate(-50%, -50%);
    transition: opacity .25s ease;
}

/* Shared application chrome */
.we-system-bar {
    position: relative;
    z-index: 1001;
    height: 27px;
    color: var(--we-muted);
    background: #020604;
    border-bottom: 1px solid var(--we-line);
    font: 700 10px/27px var(--we-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.we-system-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.we-system-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--we-lime);
}

.we-live-dot {
    width: 6px;
    height: 6px;
    background: var(--we-lime);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--we-lime);
    animation: wePulse 1.8s ease-in-out infinite;
}

body.we-platform .navbar-fixed { height: 78px; }

body.we-platform nav.we-nav {
    height: 78px;
    line-height: 78px;
    background: rgba(3, 8, 5, .84);
    border-bottom: 1px solid var(--we-line);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

body.we-platform nav.we-nav .nav-wrapper { height: 78px; }

.we-brand {
    display: inline-flex;
    align-items: center;
    height: 78px;
    gap: 12px;
    color: var(--we-white) !important;
}

.we-brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #031006;
    background: var(--we-lime);
    border: 1px solid #d9ffca;
    clip-path: polygon(50% 0, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
    box-shadow: 0 0 30px rgba(139, 255, 91, .24);
}

.we-brand-mark .material-icons {
    color: #031006;
    font-size: 24px;
    line-height: 1;
}

.we-brand-copy { display: grid; line-height: 1; }

.we-brand-name {
    font: 900 20px/1 var(--we-display);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.we-brand-sub {
    margin-top: 5px;
    color: var(--we-muted);
    font: 700 8px/1 var(--we-mono);
    letter-spacing: .2em;
    text-transform: uppercase;
}

body.we-platform nav ul a {
    position: relative;
    color: #b7c8bb;
    font: 700 11px/78px var(--we-mono);
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.we-platform nav ul a::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 19px;
    left: 15px;
    height: 1px;
    background: var(--we-lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

body.we-platform nav ul a:hover,
body.we-platform nav ul li.active a {
    color: var(--we-white);
    background: rgba(139, 255, 91, .04);
}

body.we-platform nav ul a:hover::after,
body.we-platform nav ul li.active a::after {
    transform: scaleX(1);
    transform-origin: left;
}

body.we-platform nav .sidenav-trigger {
    color: var(--we-lime);
    margin: 0;
    float: right;
}

body.we-platform .sidenav {
    padding-top: 24px;
    background: #07110b;
    border-right: 1px solid var(--we-line-hot);
}

body.we-platform .sidenav li > a {
    color: var(--we-white);
    font: 700 13px/48px var(--we-mono);
    text-transform: uppercase;
}

body.we-platform main { position: relative; z-index: 1; }

.we-app-container.container {
    width: 92%;
    max-width: 1480px;
}

.we-main-section { min-height: calc(100vh - 230px); padding: 28px 0 60px; }

body.we-platform:not(.we-home-page) .we-main-section {
    margin-top: 24px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(11, 27, 16, .84), rgba(4, 11, 7, .88));
    border: 1px solid var(--we-line);
    border-radius: var(--we-radius);
    box-shadow: var(--we-shadow);
}

body.we-platform:not(.we-home-page) .we-main-section::before {
    content: "SECURE CANNABIS RISK WORKSPACE";
    display: block;
    margin: -12px 0 26px;
    color: var(--we-muted);
    font: 700 9px/1 var(--we-mono);
    letter-spacing: .2em;
}

.we-page-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--we-line);
}

.we-page-kicker,
.we-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--we-lime);
    font: 700 10px/1.2 var(--we-mono);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.we-page-kicker::before,
.we-eyebrow::before {
    content: "";
    width: 21px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.we-page-intro h1,
.we-page-intro h2,
.we-page-intro h3,
.we-page-intro h4 {
    margin: 0;
    color: var(--we-white);
    font: 900 clamp(2rem, 4vw, 4.5rem)/.94 var(--we-display);
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.we-page-intro p {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--we-muted);
    line-height: 1.65;
}

.we-status-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    color: var(--we-lime);
    background: rgba(139, 255, 91, .06);
    border: 1px solid var(--we-line-hot);
    border-radius: 999px;
    font: 700 9px/1 var(--we-mono);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Homepage */
.platform-home {
    width: 100vw;
    margin: -28px calc(50% - 50vw) -60px;
}

.we-home-page .we-main-section { padding-top: 0; }

.we-hero {
    position: relative;
    min-height: calc(100vh - 105px);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--we-line);
}

.we-risk-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: .72;
}

.we-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: min(62vw, 820px);
    aspect-ratio: 1;
    right: -11vw;
    top: 50%;
    border: 1px solid rgba(139, 255, 91, .18);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow:
        0 0 0 70px rgba(139, 255, 91, .018),
        0 0 0 140px rgba(139, 255, 91, .014),
        inset 0 0 120px rgba(139, 255, 91, .05);
}

.we-hero-grid {
    position: relative;
    z-index: 2;
    width: min(92%, 1480px);
    margin: 0 auto;
    padding: 90px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    align-items: center;
    gap: clamp(35px, 6vw, 110px);
}

.we-hero-copy { max-width: 900px; }

.we-hero h1 {
    margin: 0 0 24px;
    color: var(--we-white);
    font: 900 clamp(4.2rem, 8.7vw, 9.6rem)/.78 var(--we-display);
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.we-hero h1 .we-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 255, 180, .72);
    text-stroke: 1px rgba(201, 255, 180, .72);
}

.we-hero h1 .we-accent { color: var(--we-lime); }

.we-hero-lede {
    max-width: 720px;
    margin: 0;
    color: #abc1af;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    line-height: 1.65;
}

.we-type-line {
    margin: 26px 0;
    color: var(--we-muted);
    font: 700 11px/1.4 var(--we-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.we-type-target { color: var(--we-lime); }
.we-type-target::after { content: "_"; animation: weBlink .8s steps(1) infinite; }

.we-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.we-btn,
body.we-platform .abtn,
body.we-platform input[type="submit"],
body.we-platform input[type="button"],
body.we-platform button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    color: #041008;
    background: var(--we-lime);
    border: 1px solid var(--we-lime);
    border-radius: 2px;
    font: 800 11px/1 var(--we-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 9px 28px rgba(100, 255, 85, .13);
    cursor: pointer;
}

.we-btn:hover,
body.we-platform .abtn:hover,
body.we-platform input[type="submit"]:hover,
body.we-platform input[type="button"]:hover,
body.we-platform button:hover {
    color: #020705;
    background: var(--we-mint);
    border-color: var(--we-mint);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(100, 255, 85, .2);
}

.we-btn--ghost {
    color: var(--we-white);
    background: rgba(4, 12, 7, .6);
    border-color: rgba(201, 255, 180, .28);
    box-shadow: none;
}

.we-btn--ghost:hover { color: var(--we-lime); background: rgba(139, 255, 91, .07); border-color: var(--we-lime); }

.we-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
    color: var(--we-muted);
    font: 700 9px/1.3 var(--we-mono);
    letter-spacing: .09em;
    text-transform: uppercase;
}

.we-hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.we-hero-proof i { color: var(--we-lime); font-size: 16px; }

.we-orbit-console {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1;
    justify-self: end;
    display: grid;
    place-items: center;
}

.we-orbit-ring {
    position: absolute;
    inset: 5%;
    border: 1px solid rgba(139, 255, 91, .18);
    border-radius: 50%;
    animation: weSpin 28s linear infinite;
}

.we-orbit-ring::before,
.we-orbit-ring::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--we-lime);
    box-shadow: 0 0 16px var(--we-lime);
}

.we-orbit-ring::before { left: 12%; top: 14%; }
.we-orbit-ring::after { right: 7%; bottom: 22%; background: var(--we-cyan); }
.we-orbit-ring--two { inset: 16%; animation-direction: reverse; animation-duration: 18s; }
.we-orbit-ring--three { inset: 28%; animation-duration: 12s; }

.we-leaf-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 50% 35%, rgba(139, 255, 91, .28), transparent 55%),
        rgba(4, 14, 8, .92);
    border: 1px solid var(--we-line-hot);
    border-radius: 50%;
    box-shadow: inset 0 0 55px rgba(139, 255, 91, .08), 0 0 90px rgba(139, 255, 91, .12);
}

.we-leaf-core .material-icons {
    color: var(--we-lime);
    font-size: clamp(70px, 10vw, 140px);
    filter: drop-shadow(0 0 25px rgba(139, 255, 91, .45));
}

.we-core-label {
    position: absolute;
    bottom: 16%;
    color: var(--we-muted);
    font: 700 8px/1 var(--we-mono);
    letter-spacing: .14em;
}

.we-float-stat {
    position: absolute;
    z-index: 3;
    min-width: 150px;
    padding: 13px 15px;
    color: var(--we-muted);
    background: rgba(3, 10, 6, .82);
    border: 1px solid var(--we-line);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font: 700 8px/1.4 var(--we-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .3);
}

.we-float-stat strong { display: block; margin-top: 4px; color: var(--we-white); font-size: 15px; }
.we-float-stat::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--we-lime); box-shadow: 0 0 8px var(--we-lime); }
.we-float-stat--one { top: 9%; left: 0; }
.we-float-stat--two { right: 0; top: 34%; }
.we-float-stat--three { bottom: 8%; left: 4%; }

.we-intel-strip {
    overflow: hidden;
    color: #071009;
    background: var(--we-lime);
    border-block: 1px solid #d2ffc1;
    font: 800 10px/37px var(--we-mono);
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.we-intel-track { display: inline-block; min-width: 200%; animation: weMarquee 24s linear infinite; }
.we-intel-track span { margin-right: 44px; }
.we-intel-track span::before { content: "+"; margin-right: 10px; }

.we-section {
    position: relative;
    padding: clamp(85px, 10vw, 150px) max(4%, calc((100vw - 1480px) / 2));
}

.we-section--tight { padding-block: 70px; }
.we-section--border { border-bottom: 1px solid var(--we-line); }

.we-section-header {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(280px, .45fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 54px;
}

.we-section h2 {
    max-width: 920px;
    margin: 0;
    color: var(--we-white);
    font: 900 clamp(3rem, 6vw, 7rem)/.86 var(--we-display);
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.we-section h2 em { color: var(--we-lime); font-style: normal; }
.we-section-header > p { margin: 0; color: var(--we-muted); font-size: 1.05rem; line-height: 1.7; }

.we-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--we-line); }

.we-metric {
    position: relative;
    min-height: 190px;
    padding: 29px;
    background: linear-gradient(145deg, rgba(11, 26, 15, .88), rgba(3, 10, 6, .8));
    border-right: 1px solid var(--we-line);
    overflow: hidden;
}

.we-metric:last-child { border-right: 0; }
.we-metric::after { content: attr(data-index); position: absolute; right: 12px; top: 8px; color: rgba(139, 255, 91, .18); font: 700 46px/1 var(--we-mono); }
.we-metric-value { display: block; margin: 35px 0 8px; color: var(--we-lime); font: 900 clamp(2.8rem, 5vw, 5.4rem)/1 var(--we-display); letter-spacing: -.04em; }
.we-metric-label { color: var(--we-muted); font: 700 9px/1.4 var(--we-mono); letter-spacing: .13em; text-transform: uppercase; }

.we-coverage-layout { display: grid; grid-template-columns: minmax(280px, .34fr) minmax(0, .66fr); gap: 42px; }
.we-coverage-tabs { display: grid; align-content: start; border-top: 1px solid var(--we-line); }

.we-coverage-tab {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    min-height: 70px;
    padding: 0 8px;
    color: var(--we-muted);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--we-line);
    font: 800 12px/1.3 var(--we-mono);
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
    box-shadow: none;
}

.we-coverage-tab:hover,
.we-coverage-tab.is-active { color: var(--we-white); background: rgba(139, 255, 91, .045); transform: none; }
.we-coverage-tab.is-active { border-bottom-color: var(--we-lime); }
.we-coverage-tab .material-icons { color: var(--we-lime); }
.we-tab-index { color: #526459; font-size: 9px; }

.we-coverage-display {
    position: relative;
    min-height: 520px;
    padding: clamp(32px, 5vw, 72px);
    background:
        linear-gradient(135deg, rgba(13, 35, 20, .88), rgba(3, 10, 6, .9)),
        url("/content/images/honeycomb.png");
    border: 1px solid var(--we-line-hot);
    overflow: hidden;
    box-shadow: var(--we-shadow);
}

.we-coverage-display::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -120px;
    top: -120px;
    border: 1px solid var(--we-line-hot);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(139, 255, 91, .02), 0 0 0 80px rgba(139, 255, 91, .015);
}

.we-coverage-code { color: var(--we-lime); font: 700 10px/1 var(--we-mono); letter-spacing: .18em; }
.we-coverage-display h3 { max-width: 740px; margin: 26px 0 22px; color: var(--we-white); font: 900 clamp(3rem, 5vw, 6rem)/.88 var(--we-display); letter-spacing: -.04em; text-transform: uppercase; }
.we-coverage-display p { max-width: 700px; color: #a8bbaa; font-size: 1.12rem; line-height: 1.7; }
.we-coverage-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 38px; }
.we-coverage-point { display: flex; align-items: center; gap: 10px; color: var(--we-white); font: 700 10px/1.35 var(--we-mono); letter-spacing: .07em; text-transform: uppercase; }
.we-coverage-point i { color: var(--we-lime); font-size: 18px; }

.we-sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.we-sector-card {
    position: relative;
    min-height: 300px;
    padding: 31px;
    color: var(--we-white);
    background: rgba(8, 21, 12, .72);
    border: 1px solid var(--we-line);
    overflow: hidden;
    transform-style: preserve-3d;
}

.we-sector-card::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--we-lime), transparent); transform: scaleX(.18); transform-origin: left; transition: transform .35s ease; }
.we-sector-card:hover::before { transform: scaleX(1); }
.we-sector-card:hover { border-color: var(--we-line-hot); }
.we-sector-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--we-lime); background: rgba(139, 255, 91, .06); border: 1px solid var(--we-line); }
.we-sector-card h3 { margin: 58px 0 13px; color: var(--we-white); font: 900 2rem/1 var(--we-display); text-transform: uppercase; }
.we-sector-card p { color: var(--we-muted); line-height: 1.6; }
.we-sector-id { position: absolute; top: 23px; right: 23px; color: #506155; font: 700 9px/1 var(--we-mono); }

.we-lab {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(360px, .55fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: center;
}

.we-lab-panel { padding: clamp(28px, 4vw, 54px); background: rgba(7, 20, 11, .85); border: 1px solid var(--we-line-hot); box-shadow: var(--we-shadow); }
.we-control { margin-bottom: 29px; }
.we-control:last-of-type { margin-bottom: 19px; }
.we-control-head { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--we-muted); font: 700 10px/1 var(--we-mono); letter-spacing: .1em; text-transform: uppercase; }
.we-control-value { color: var(--we-lime); }

body.we-platform input[type=range].we-range {
    width: 100%;
    height: 2px;
    margin: 11px 0;
    background: linear-gradient(90deg, var(--we-lime), rgba(139, 255, 91, .14));
    border: 0;
    accent-color: var(--we-lime);
}

.we-score-display { position: relative; display: grid; place-items: center; width: min(100%, 400px); aspect-ratio: 1; margin: 0 auto; border: 1px solid var(--we-line); border-radius: 50%; }
.we-score-display::before, .we-score-display::after { content: ""; position: absolute; border: 1px dashed rgba(139, 255, 91, .22); border-radius: 50%; animation: weSpin 22s linear infinite; }
.we-score-display::before { inset: 9%; }
.we-score-display::after { inset: 21%; animation-direction: reverse; animation-duration: 16s; }
.we-score-copy { position: relative; z-index: 2; text-align: center; }
.we-score { display: block; color: var(--we-lime); font: 900 clamp(5rem, 9vw, 9rem)/.82 var(--we-display); letter-spacing: -.05em; }
.we-score-label { color: var(--we-muted); font: 700 9px/1.4 var(--we-mono); letter-spacing: .14em; text-transform: uppercase; }
.we-score-gap { display: block; margin-top: 12px; color: var(--we-white); font: 700 12px/1 var(--we-mono); }

.we-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.we-process-step { position: relative; min-height: 225px; padding: 29px; border-top: 1px solid var(--we-line); border-right: 1px solid var(--we-line); border-bottom: 1px solid var(--we-line); }
.we-process-step:first-child { border-left: 1px solid var(--we-line); }
.we-process-step::after { content: ""; position: absolute; right: -5px; top: 51px; z-index: 2; width: 9px; height: 9px; border-radius: 50%; background: var(--we-lime); box-shadow: 0 0 12px var(--we-lime); }
.we-process-step:last-child::after { display: none; }
.we-process-num { color: var(--we-lime); font: 700 10px/1 var(--we-mono); }
.we-process-step h3 { margin: 58px 0 10px; color: var(--we-white); font: 900 1.8rem/1 var(--we-display); text-transform: uppercase; }
.we-process-step p { color: var(--we-muted); line-height: 1.55; }

.we-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 45px;
    padding: clamp(48px, 8vw, 110px);
    background: var(--we-lime);
    color: #041007;
    overflow: hidden;
}

.we-cta::after { content: "RISK // GROWTH // COVERAGE //"; position: absolute; right: -3%; bottom: -20px; color: rgba(4, 16, 7, .08); font: 900 clamp(4rem, 9vw, 10rem)/1 var(--we-display); white-space: nowrap; }
.we-cta-copy { position: relative; z-index: 2; }
.we-cta .we-eyebrow { color: #183d1e; }
.we-cta h2 { color: #041007; max-width: 950px; }
.we-cta p { max-width: 680px; color: #2e5434; font-size: 1.1rem; line-height: 1.65; }
.we-cta .we-btn { position: relative; z-index: 2; color: var(--we-white); background: #041007; border-color: #041007; }
.we-cta .we-btn:hover { color: var(--we-lime); background: #0b1c0f; }

/* Forms, tables, and generated server controls */
body.we-platform h1,
body.we-platform h2,
body.we-platform h3,
body.we-platform h4,
body.we-platform h5 { color: var(--we-white); }

body.we-platform h4.center { margin: 0 0 30px; font: 900 clamp(2rem, 4vw, 4.2rem)/.95 var(--we-display); letter-spacing: -.025em; text-transform: uppercase; }

body.we-platform label { color: #a7bbaa; font: 700 10px/1.35 var(--we-mono); letter-spacing: .06em; text-transform: uppercase; }

body.we-platform input:not([type]),
body.we-platform input[type=text]:not(.browser-default),
body.we-platform input[type=password]:not(.browser-default),
body.we-platform input[type=email]:not(.browser-default),
body.we-platform input[type=url]:not(.browser-default),
body.we-platform input[type=tel]:not(.browser-default),
body.we-platform input[type=number]:not(.browser-default),
body.we-platform input[type=date]:not(.browser-default),
body.we-platform textarea.materialize-textarea,
body.we-platform textarea {
    box-sizing: border-box;
    min-height: 45px;
    margin: 6px 0 18px;
    padding: 10px 12px;
    color: var(--we-white);
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(169, 255, 135, .22);
    border-radius: 2px;
    box-shadow: none;
    font-family: var(--we-mono);
}

body.we-platform input:not([type]):focus:not([readonly]),
body.we-platform input[type=text]:not(.browser-default):focus:not([readonly]),
body.we-platform input[type=password]:not(.browser-default):focus:not([readonly]),
body.we-platform input[type=email]:not(.browser-default):focus:not([readonly]),
body.we-platform input[type=tel]:not(.browser-default):focus:not([readonly]),
body.we-platform textarea:focus:not([readonly]) {
    border-color: var(--we-lime);
    box-shadow: 0 0 0 1px var(--we-lime), 0 0 22px rgba(139, 255, 91, .08);
}

body.we-platform input[readonly] { color: #a4b8aa; border-style: dashed; }
body.we-platform .row { margin-bottom: 12px; }
body.we-platform hr { border: 0; border-top: 1px solid var(--we-line); }

body.we-platform table { color: var(--we-white); background: rgba(3, 10, 6, .5); border: 1px solid var(--we-line); }
body.we-platform table th { color: var(--we-lime); font: 700 10px/1.35 var(--we-mono); letter-spacing: .08em; text-transform: uppercase; }
body.we-platform table td, body.we-platform table th { padding: 13px; border-bottom: 1px solid var(--we-line); }
body.we-platform table tr:hover { background: rgba(139, 255, 91, .035); }

.we-form-shell { padding: clamp(20px, 3vw, 40px); background: rgba(2, 9, 5, .34); border: 1px solid var(--we-line); }

.we-auth-shell { max-width: 650px; margin: 5vh auto; }
.we-auth-card { padding: clamp(30px, 6vw, 64px); background: linear-gradient(145deg, rgba(12, 31, 17, .94), rgba(3, 9, 5, .96)); border: 1px solid var(--we-line-hot); box-shadow: var(--we-shadow); }
.we-auth-card .we-brand-mark { margin: 0 auto 22px; }
.we-auth-card h1 { margin: 0 0 8px; text-align: center; font: 900 clamp(2.8rem, 6vw, 5.6rem)/.9 var(--we-display); text-transform: uppercase; }
.we-auth-card > p { color: var(--we-muted); text-align: center; }
.we-auth-card input[type=submit] { width: 100% !important; margin-top: 10px; }

.we-empty-state,
.we-success-state {
    max-width: 760px;
    margin: 7vh auto;
    padding: clamp(36px, 7vw, 80px);
    text-align: center;
    background: rgba(8, 23, 13, .8);
    border: 1px solid var(--we-line-hot);
    box-shadow: var(--we-shadow);
}

.we-empty-state .material-icons,
.we-success-state .material-icons { color: var(--we-lime); font-size: 64px; }
.we-empty-state h1, .we-success-state h1 { font: 900 clamp(2.7rem, 5vw, 5rem)/.92 var(--we-display); text-transform: uppercase; }
.we-empty-state p, .we-success-state p { color: var(--we-muted); line-height: 1.7; }

body.we-platform .page-footer.we-footer { margin-top: 0; padding-top: 0; color: var(--we-muted); background: #020604; border-top: 1px solid var(--we-line); }
.we-footer-main { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 46px; align-items: start; padding-block: 44px; }
.we-footer .we-brand { height: auto; }
.we-footer-copy { max-width: 430px; margin-top: 15px; color: #728378; font-size: .9rem; line-height: 1.6; }
.we-footer-label { margin-bottom: 13px; color: var(--we-lime); font: 700 9px/1 var(--we-mono); letter-spacing: .14em; text-transform: uppercase; }
.we-footer-links { display: flex; flex-wrap: wrap; gap: 8px 21px; }
.we-footer-links a { color: #9fb1a4; font: 700 10px/1.5 var(--we-mono); text-transform: uppercase; }
body.we-platform .page-footer .footer-copyright { min-height: 46px; color: #66776b; background: rgba(255, 255, 255, .015); border-top: 1px solid rgba(139, 255, 91, .08); font: 700 9px/46px var(--we-mono); letter-spacing: .06em; text-transform: uppercase; }

/* Reveal / motion */
.we-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.we-reveal.is-visible { opacity: 1; transform: none; }

@keyframes wePulse { 0%, 100% { opacity: .45; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes weBlink { 50% { opacity: 0; } }
@keyframes weSpin { to { transform: rotate(360deg); } }
@keyframes weMarquee { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
    .we-hero-grid { grid-template-columns: 1fr minmax(300px, .65fr); gap: 30px; }
    .we-hero h1 { font-size: clamp(4rem, 9vw, 7rem); }
    .we-metric-grid { grid-template-columns: repeat(2, 1fr); }
    .we-metric:nth-child(2) { border-right: 0; }
    .we-metric:nth-child(-n+2) { border-bottom: 1px solid var(--we-line); }
    .we-sector-grid { grid-template-columns: repeat(2, 1fr); }
    .we-process-grid { grid-template-columns: repeat(2, 1fr); }
    .we-process-step:nth-child(2)::after { display: none; }
    .we-process-step:nth-child(-n+2) { border-bottom: 0; }
    .we-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .we-system-bar { display: none; }
    body.we-platform .navbar-fixed, body.we-platform nav.we-nav, body.we-platform nav.we-nav .nav-wrapper, .we-brand { height: 66px; }
    .we-brand-mark { width: 36px; height: 36px; }
    .we-brand-name { font-size: 17px; }
    .we-brand-sub { display: none; }
    .we-app-container.container { width: 94%; }
    body.we-platform:not(.we-home-page) .we-main-section { margin-top: 12px; padding: 19px 14px 36px; }
    .platform-home { margin-top: -28px; }
    .we-hero { min-height: auto; }
    .we-hero-grid { grid-template-columns: 1fr; padding: 70px 0 45px; }
    .we-hero h1 { font-size: clamp(3.7rem, 18vw, 6.4rem); }
    .we-orbit-console { width: min(95%, 440px); justify-self: center; }
    .we-float-stat { min-width: 120px; padding: 9px; }
    .we-section { padding-inline: 5%; }
    .we-section-header { grid-template-columns: 1fr; gap: 20px; }
    .we-section h2 { font-size: clamp(2.8rem, 15vw, 5rem); }
    .we-metric-grid, .we-sector-grid, .we-process-grid { grid-template-columns: 1fr; }
    .we-metric { border-right: 0; border-bottom: 1px solid var(--we-line); }
    .we-metric:last-child { border-bottom: 0; }
    .we-coverage-layout, .we-lab, .we-cta { grid-template-columns: 1fr; }
    .we-coverage-display { min-height: 500px; }
    .we-coverage-points { grid-template-columns: 1fr; }
    .we-process-step { border-left: 1px solid var(--we-line); border-bottom: 0; }
    .we-process-step:last-child { border-bottom: 1px solid var(--we-line); }
    .we-process-step::after { display: none; }
    .we-page-intro { display: block; }
    .we-status-chip { margin-top: 20px; }
    .we-footer-main { grid-template-columns: 1fr; gap: 28px; }
    body.we-platform .page-footer .footer-copyright { line-height: 1.5; padding-block: 13px; }
    .we-cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .we-reveal { opacity: 1; transform: none; }
}

/* Homepage inherited-theme correction */
body.we-platform.we-home-page .we-app-container.container,
body.we-platform.we-home-page .we-main-section,
body.we-platform.we-home-page .platform-home {
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

body.we-platform.we-home-page .we-hero {
    color: var(--we-white) !important;
    background:
        radial-gradient(circle at 72% 48%, rgba(62, 215, 93, .12), transparent 30rem),
        radial-gradient(circle at 12% 18%, rgba(105, 247, 208, .06), transparent 24rem),
        #030805 !important;
}

body.we-platform.we-home-page .we-hero h1,
body.we-platform.we-home-page .we-hero h1 .we-accent {
    color: var(--we-white) !important;
}

body.we-platform.we-home-page .we-hero h1 .we-outline {
    color: transparent !important;
    -webkit-text-stroke-color: rgba(201, 255, 180, .78) !important;
}

body.we-platform.we-home-page .we-hero-lede {
    color: #b8cdbc !important;
}

.we-eagle-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 78px;
    height: 46px;
    padding: 2px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(139, 255, 91, .7);
    border-radius: 3px;
    box-shadow: 0 0 24px rgba(139, 255, 91, .16);
    clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.we-eagle-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .we-eagle-logo {
        width: 64px;
        height: 38px;
    }
}
/* Explicit interactive contrast states */
body.we-platform a.we-btn {
    color: #041008 !important;
}

body.we-platform a.we-btn:hover,
body.we-platform a.we-btn:focus-visible {
    color: #020705 !important;
}

body.we-platform a.we-btn.we-btn--ghost {
    color: var(--we-white) !important;
}

body.we-platform a.we-btn.we-btn--ghost:hover,
body.we-platform a.we-btn.we-btn--ghost:focus-visible {
    color: var(--we-lime) !important;
}

body.we-platform button.we-coverage-tab {
    color: var(--we-muted);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--we-line);
    border-radius: 0;
    box-shadow: none;
}

body.we-platform button.we-coverage-tab:hover,
body.we-platform button.we-coverage-tab:focus-visible,
body.we-platform button.we-coverage-tab.is-active {
    color: var(--we-white);
    background: rgba(139, 255, 91, .045);
    border-bottom-color: var(--we-lime);
    box-shadow: none;
    transform: none;
}

body.we-platform .we-cta a.we-btn {
    color: var(--we-white) !important;
}

body.we-platform .we-cta a.we-btn:hover,
body.we-platform .we-cta a.we-btn:focus-visible {
    color: var(--we-lime) !important;
}