@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
    --ink: #14221d;
    --muted: #65736e;
    --green: #227a58;
    --green-dark: #185c43;
    --mint: #dceee6;
    --cream: #f4f1e9;
    --paper: rgba(255, 255, 255, 0.78);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 16% 15%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 85% 82%, rgba(199, 225, 213, 0.72) 0, rgba(199, 225, 213, 0) 29%),
        var(--cream);
    font-family: 'DM Sans', sans-serif;
}

body::before,
body::after {
    position: fixed;
    z-index: -1;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(34, 122, 88, 0.09);
    border-radius: 50%;
    content: '';
}

body::before {
    top: -7rem;
    right: -5rem;
    box-shadow: 0 0 0 3.5rem rgba(34, 122, 88, 0.025), 0 0 0 7rem rgba(34, 122, 88, 0.018);
}

body::after {
    bottom: -10rem;
    left: -6rem;
    box-shadow: 0 0 0 4rem rgba(34, 122, 88, 0.025);
}

.maintenance-shell {
    width: min(100% - 2rem, 74rem);
    min-height: 100vh;
    margin-inline: auto;
    padding: 2rem 0 1.5rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.brand {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.brand-mark {
    width: 2rem;
    height: 2rem;
    padding: 0.38rem;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.13rem;
    border-radius: 0.6rem;
    background: var(--green);
    box-shadow: 0 0.4rem 1rem rgba(34, 122, 88, 0.2);
}

.brand-mark span {
    width: 0.23rem;
    border-radius: 1rem;
    background: white;
    transform: rotate(14deg);
}

.brand-mark span:nth-child(1) { height: 45%; }
.brand-mark span:nth-child(2) { height: 90%; }
.brand-mark span:nth-child(3) { height: 67%; }

.maintenance-card {
    width: min(100%, 43rem);
    margin: auto;
    padding: 3rem clamp(1.4rem, 5vw, 4.5rem);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    background: var(--paper);
    box-shadow: 0 1.6rem 5rem rgba(43, 62, 54, 0.1);
    text-align: center;
    backdrop-filter: blur(18px);
}

.illustration {
    position: relative;
    width: 8.75rem;
    height: 8.75rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #edf7f2, #cfe7dc);
    box-shadow: inset 0 0 0 1px rgba(34, 122, 88, 0.06), 0 1rem 2.5rem rgba(34, 122, 88, 0.12);
}

.orbit {
    position: absolute;
    inset: 1rem;
    border: 1px dashed rgba(34, 122, 88, 0.2);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.orbit::before {
    position: absolute;
    top: -0.22rem;
    left: 50%;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--green);
    content: '';
}

.orbit-two {
    inset: 1.7rem;
    animation-direction: reverse;
    animation-duration: 13s;
}

.tool {
    position: absolute;
    inset: 0;
    transform: rotate(-38deg);
}

.tool-head {
    position: absolute;
    top: 2rem;
    left: 3.35rem;
    width: 2.1rem;
    height: 2.35rem;
    border: 0.7rem solid var(--green);
    border-top-color: transparent;
    border-radius: 0 0 1rem 1rem;
}

.tool-handle {
    position: absolute;
    top: 4.1rem;
    left: 4rem;
    width: 0.8rem;
    height: 2.85rem;
    border-radius: 0.5rem;
    background: var(--green);
}

.spark {
    position: absolute;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #e1a948;
    box-shadow: 0 0 0 0.3rem rgba(225, 169, 72, 0.13);
}

.spark-one { top: 1rem; right: 0.55rem; }
.spark-two { bottom: 1.35rem; left: 0.2rem; transform: scale(0.65); }
.spark-three { top: 0.7rem; left: 0.5rem; transform: scale(0.45); }

.status-pill {
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0.45rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(34, 122, 88, 0.13);
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(220, 238, 230, 0.65);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0.22rem rgba(34, 122, 88, 0.13);
    animation: pulse 2s ease-in-out infinite;
}

h1 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.35rem, 7vw, 4.15rem);
    line-height: 1.06;
    letter-spacing: -0.065em;
}

.lead {
    margin: 1.2rem auto 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.7;
}

.divider {
    width: 3rem;
    height: 1px;
    margin: 1.8rem auto 1.4rem;
    background: rgba(20, 34, 29, 0.14);
}

.small-copy {
    margin: 0 0 0.7rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

.contact-link svg {
    width: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 180ms ease;
}

.contact-link:hover svg { transform: translateX(0.25rem); }

footer {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: #77837e;
    font-size: 0.76rem;
}

.footer-separator {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: #9ba59f;
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes pulse {
    50% { box-shadow: 0 0 0 0.38rem rgba(34, 122, 88, 0.06); }
}

@media (max-width: 600px) {
    .maintenance-shell { padding-top: 1.25rem; }
    .maintenance-card { margin-block: 1.5rem; border-radius: 1.5rem; }
    .illustration { width: 7.75rem; height: 7.75rem; transform: scale(0.9); margin-block: -0.25rem 1rem; }
    .tool { transform: rotate(-38deg) translate(-0.5rem, -0.5rem); }
    footer { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
