:root{
    color-scheme:dark;
    --bg:#07080b;
    --bg-soft:#0d1016;
    --panel:#12151d;
    --panel-2:#181c25;
    --line:#292e39;
    --gold:#d9b65b;
    --gold-light:#f4d98a;
    --text:#f7f4ec;
    --muted:#aeb4c1;
    --green:#39d17d;
    --orange:#f2a52b;
    --red:#f15b5b;
    --unknown:#7e8592;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    min-height:100vh;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}
.site-header{
    position:relative;
    z-index:20;
    border-bottom:1px solid rgba(217,182,91,.22);
    background:linear-gradient(180deg,rgba(8,9,13,.98),rgba(10,12,17,.94));
    box-shadow:0 16px 45px rgba(0,0,0,.28);
}
.site-header::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:2px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
    opacity:.75;
}
.header-inner{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.brand,.footer-brand{
    color:var(--gold-light);
    font-weight:900;
    letter-spacing:.15em;
    text-transform:uppercase;
}
.brand{font-size:1.25rem;white-space:nowrap;text-shadow:0 0 22px rgba(217,182,91,.22)}
.main-nav{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.main-nav a{
    padding:10px 13px;
    border-radius:10px;
    color:#dedfe3;
    font-size:.9rem;
    transition:.2s ease;
}
.main-nav a:hover,.main-nav a.active{
    color:var(--gold-light);
    background:rgba(217,182,91,.09);
}
.hero{
    position:relative;
    overflow:hidden;
    border-bottom:1px solid rgba(255,255,255,.06);
    background:
        linear-gradient(180deg,rgba(6,7,10,.22),rgba(6,7,10,.9)),
        radial-gradient(circle at 50% 5%,rgba(116,83,151,.29),transparent 40%),
        linear-gradient(135deg,#14101c,#090b10 65%);
}
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom,black,transparent 85%);
}
.hero-glow{
    position:absolute;
    width:560px;
    height:560px;
    left:50%;
    top:-310px;
    transform:translateX(-50%);
    border-radius:50%;
    background:rgba(217,182,91,.16);
    filter:blur(90px);
}
.hero-content{position:relative;z-index:2;padding:86px 0 72px;text-align:center}
.eyebrow{
    margin:0 0 12px;
    color:var(--gold);
    font-weight:800;
    font-size:.78rem;
    letter-spacing:.2em;
    text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
    margin-bottom:18px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(3rem,8vw,6.4rem);
    line-height:.94;
    letter-spacing:-.045em;
}
h1 span{color:var(--gold-light);text-shadow:0 0 40px rgba(217,182,91,.25)}
.intro{max-width:720px;margin:0 auto 38px;color:#c5c9d2;font-size:clamp(1rem,2vw,1.16rem)}
.overall{
    max-width:850px;
    margin:0 auto;
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:22px;
    padding:25px 28px;
    text-align:left;
    border:1px solid var(--line);
    border-radius:20px;
    background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018));
    box-shadow:0 25px 80px rgba(0,0,0,.43),inset 0 1px rgba(255,255,255,.04);
    backdrop-filter:blur(15px);
}
.status-light,.dot{display:inline-block;border-radius:50%;background:var(--unknown);color:var(--unknown);box-shadow:0 0 22px currentColor}
.status-light{width:24px;height:24px}
.overall.green .status-light,.dot.green{background:var(--green);color:var(--green)}
.overall.orange .status-light,.dot.orange{background:var(--orange);color:var(--orange)}
.overall.red .status-light,.dot.red{background:var(--red);color:var(--red)}
.overall.unknown .status-light,.dot.unknown{background:var(--unknown);color:var(--unknown)}
.overall-copy strong{display:block;margin-bottom:4px;font-size:clamp(1.35rem,3vw,2rem)}
.overall-copy p{margin:0 0 6px;color:#c3c8d1}
.overall-copy small{color:var(--muted)}
.status-section{padding:72px 0 90px;background:radial-gradient(circle at 15% 10%,rgba(217,182,91,.05),transparent 32%),var(--bg-soft)}
.section-heading{display:grid;grid-template-columns:1fr minmax(280px,520px);gap:45px;align-items:end;margin-bottom:28px}
.section-heading h2{margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2rem,5vw,3.7rem)}
.section-heading>p{margin:0;color:var(--muted)}
.systems{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.service-card{
    position:relative;
    min-height:190px;
    padding:24px;
    border:1px solid var(--line);
    border-radius:18px;
    background:linear-gradient(145deg,rgba(28,32,42,.92),rgba(15,18,25,.96));
    box-shadow:0 18px 50px rgba(0,0,0,.24);
    overflow:hidden;
}
.service-card::after{
    content:"";
    position:absolute;
    inset:auto -45px -65px auto;
    width:150px;
    height:150px;
    border-radius:50%;
    background:currentColor;
    opacity:.035;
    filter:blur(6px);
}
.service-card.green{color:var(--green)}
.service-card.orange{color:var(--orange)}
.service-card.red{color:var(--red)}
.service-card.unknown{color:var(--unknown)}
.service-topline{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:30px}
.dot{width:12px;height:12px}
.status-label{font-size:.72rem;font-weight:800;letter-spacing:.11em;text-transform:uppercase}
.service-card h3{margin-bottom:8px;color:var(--text);font-size:1.22rem}
.service-card p{margin:0;color:var(--muted)}
.site-footer{
    position:relative;
    border-top:1px solid rgba(217,182,91,.17);
    background:#07080b;
}
.site-footer::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(217,182,91,.65),transparent);
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:60px;padding:58px 0 42px}
.footer-brand{display:inline-block;margin-bottom:14px;font-size:1.08rem}
.footer-grid p{max-width:430px;color:var(--muted)}
.footer-grid h3{margin-bottom:14px;color:var(--gold-light);font-size:.86rem;letter-spacing:.1em;text-transform:uppercase}
.footer-grid>div:not(:first-child){display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.footer-grid a:not(.footer-brand){color:#b7bcc7;font-size:.92rem}
.footer-grid a:hover{color:var(--gold-light)}
.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding:20px 0 28px;border-top:1px solid rgba(255,255,255,.065);color:#777f8d;font-size:.84rem}
@media(max-width:820px){
    .header-inner{padding:16px 0;align-items:flex-start;flex-direction:column;gap:10px}
    .main-nav{justify-content:flex-start}
    .section-heading{grid-template-columns:1fr;gap:14px}
    .systems{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
    .footer-grid>div:first-child{grid-column:1/-1}
}
@media(max-width:560px){
    .container{width:min(100% - 26px,1180px)}
    .main-nav{gap:2px}
    .main-nav a{padding:8px;font-size:.8rem}
    .hero-content{padding:62px 0 52px}
    .overall{grid-template-columns:1fr;text-align:center;justify-items:center;padding:23px 18px}
    .status-section{padding:52px 0 64px}
    .service-card{min-height:0}
    .footer-grid{grid-template-columns:1fr}
    .footer-grid>div:first-child{grid-column:auto}
    .footer-bottom{flex-direction:column;gap:5px}
}