* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #172033;
    --muted: #637083;
    --accent: #2c7a7b;
    --accent-dark: #155e63;
    --surface: rgba(255, 255, 255, 0.88);
    --border: rgba(255, 255, 255, 0.7);
}

html {
    font-size: 62.5%;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(44, 122, 123, 0.22), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.2), transparent 30rem),
        linear-gradient(135deg, #f7fbfb 0%, #eef7f5 46%, #fffaf3 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23, 32, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 32, 51, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
}

.site-shell {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 4.8rem;
    border: 1px solid var(--border);
    border-radius: 3.2rem;
    background: var(--surface);
    box-shadow: 0 2.4rem 7rem rgba(21, 94, 99, 0.16);
    backdrop-filter: blur(18px);
}

.hero-card::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: -8rem;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: rgba(44, 122, 123, 0.12);
}

.main-title {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.4rem;
    margin-bottom: 2.2rem;
    border-radius: 999px;
    background: rgba(44, 122, 123, 0.1);
    color: var(--accent-dark);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-title h1 {
    max-width: 58rem;
    margin-bottom: 1.2rem;
    font-size: clamp(3.8rem, 7vw, 7.6rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: var(--ink);
}

.main-title h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.18;
    font-weight: 700;
    color: var(--accent-dark);
}

.main-title p {
    max-width: 52rem;
    margin-bottom: 2.6rem;
    font-size: 1.8rem;
    color: var(--muted);
}

.status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-list span {
    display: inline-flex;
    align-items: center;
    min-height: 4.2rem;
    padding: 0.9rem 1.4rem;
    border: 1px solid rgba(44, 122, 123, 0.14);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.72);
    color: #314052;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 1rem 2.4rem rgba(21, 94, 99, 0.08);
}

.svg-img {
    position: relative;
    z-index: 1;
    display: block;
    margin: auto;
}

.illustration-card {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 0.92;
    border-radius: 2.6rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 247, 245, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

svg {
    display: block;
    width: min(100%, 46rem);
    height: auto;
    margin: auto;
    filter: drop-shadow(0 1.6rem 2.6rem rgba(23, 32, 51, 0.12));
}

#clock{
    animation: clockHand 5s infinite linear;
    
    
    transform-box: fill-box;
    transform-origin: bottom;
}

#leftTree, #righTree{
    animation: tree 2s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#man{
    animation: manBody 1s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#pc-circle{
    fill: #6ace66;
    stroke-width: 4;
    animation: change-light 4s linear infinite alternate;
}

.footer {
    width: 100%;
    min-height: 56px;
    padding: 1.6rem 0;
    color: var(--muted);
    font-size: 1.4rem;
    font-weight: 600;
}

@keyframes clockHand{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(-360deg);
    }
}

@keyframes manBody{
    from{
        transform: rotateX(0deg);
    }
    to{
        transform: rotateX(10deg);
    }
}

@keyframes tree{
    from{
        transform: rotateZ(10deg);
    }
    to{
        transform: rotateZ(-20deg);
    }
}

@keyframes change-light {
    0% {
        stroke: #cd61f8;
      }
      25% {
        stroke: #6ace66;
      }
      75% {
        stroke: #2995c0;
      }
      100% {
        stroke: #e92949;
      }
  }

@media (max-width: 991px) {
    .site-shell {
        padding: 2.4rem 0;
    }

    .hero-card {
        padding: 3rem 2rem;
        border-radius: 2.4rem;
        text-align: center;
    }

    .main-title p {
        margin-right: auto;
        margin-left: auto;
    }

    .status-list {
        justify-content: center;
    }

    .illustration-card {
        margin-top: 3rem;
    }
}

@media (max-width: 575px) {
    html {
        font-size: 56.25%;
    }

    .hero-card {
        margin: 0 0.4rem;
        padding: 2.4rem 1.6rem;
    }

    .main-title h1 {
        letter-spacing: -0.04em;
    }

    .status-list span {
        width: 100%;
        justify-content: center;
    }
}