:root {
    --updates-navy: #182337;
    --updates-orange: #f07a34;
    --updates-orange-dark: #d9601d;
    --updates-blue: #3276c8;
    --updates-text: #58677d;
    --updates-border: #dbe3ec;
    --updates-surface: #ffffff;
    --updates-background: #f4f7fa;
}
* {
    box-sizing: border-box;
}
html {
    min-height: 100%;
}
body {
    min-height: 100vh;
    margin: 0;
    color: var(--updates-navy);
    background-color: var(--updates-background);
    background-image: radial-gradient(
            circle at 94% 6%,
            rgba(240, 122, 52, 0.1) 0 130px,
            transparent 132px
        ),
        linear-gradient(rgba(35, 67, 105, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 67, 105, 0.035) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
}
.updates-notice {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}
.updates-card {
    width: min(1060px, 100%);
    overflow: hidden;
    border: 1px solid var(--updates-border);
    border-radius: 24px;
    background: var(--updates-surface);
    box-shadow: 0 24px 72px rgba(26, 45, 73, 0.13);
}
.updates-header {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 40px;
    border-bottom: 1px solid var(--updates-border);
}
.updates-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.updates-brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 220px;
    object-fit: contain;
}
.updates-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--updates-border);
    border-radius: 999px;
    color: #49617e;
    background: #f8fafc;
    font-size: 13px;
    font-weight: 700;
}
.updates-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #31b66c;
    box-shadow: 0 0 0 5px rgba(49, 182, 108, 0.12);
}
.updates-content {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: clamp(44px, 7vw, 84px);
    padding: clamp(68px, 9vw, 100px) clamp(40px, 7vw, 82px);
}
.updates-visual {
    position: relative;
    width: 260px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #f7fbff, #fff8f3);
}
.updates-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #dbe8f3;
    border-radius: inherit;
}
.updates-visual img {
    position: relative;
    z-index: 2;
    width: 84px;
    height: 84px;
    filter: drop-shadow(0 12px 20px rgba(34, 91, 154, 0.18));
}
.updates-ring {
    position: absolute;
    border: 1px solid rgba(50, 118, 200, 0.16);
    border-radius: 50%;
}
.updates-ring-one {
    inset: 34px;
}
.updates-ring-two {
    inset: 70px;
    border-color: rgba(240, 122, 52, 0.2);
}
.updates-eyebrow {
    margin: 0 0 18px;
    color: var(--updates-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.updates-copy h1 {
    margin: 0;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.updates-copy > p:not(.updates-eyebrow) {
    max-width: 600px;
    margin: 22px 0 0;
    color: var(--updates-text);
    font-size: 17px;
    line-height: 1.75;
}
.updates-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.updates-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        transform 0.2s ease;
}
.updates-button:hover {
    transform: translateY(-2px);
}
.updates-button-primary {
    color: #fff;
    background: var(--updates-orange);
    box-shadow: 0 12px 28px rgba(240, 122, 52, 0.23);
}
.updates-button-primary:hover {
    background: var(--updates-orange-dark);
}
.updates-button-secondary {
    border-color: var(--updates-border);
    background: #fff;
}
.updates-button-secondary:hover {
    border-color: #bdc9d7;
    background: #f8fafc;
}
.updates-footer {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 40px;
    border-top: 1px solid var(--updates-border);
    color: #77869a;
    background: #f8fafc;
    font-size: 12px;
}
@media (max-width: 820px) {
    .updates-notice {
        padding: 20px;
    }
    .updates-content {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .updates-visual {
        width: 190px;
    }
}
@media (max-width: 560px) {
    .updates-notice {
        padding: 0;
    }
    .updates-card {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }
    .updates-header {
        min-height: 88px;
        padding: 20px;
    }
    .updates-status {
        display: none;
    }
    .updates-content {
        padding: 54px 24px;
    }
    .updates-copy h1 {
        font-size: 36px;
    }
    .updates-actions {
        flex-direction: column;
    }
    .updates-button {
        width: 100%;
    }
    .updates-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 24px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .updates-button {
        transition: none;
    }
}
