:root {
    --ps-ink: #183044;
    --ps-muted: #64798a;
    --ps-blue: #2d6b91;
    --ps-teal: #2c9a91;
    --ps-bg: #f5f8fa;
    --ps-surface: #fff;
    --ps-line: #dbe6eb;
    --ps-coral: #d9785f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ps-landing { min-height: 100vh; margin: 0; background: var(--ps-bg); color: var(--ps-ink); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }

.am-common h1 { margin: 0; text-align: center; }

.ps-site { display: flex; min-height: 100vh; flex-direction: column; overflow: hidden; }

.ps-container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

.ps-header { background: rgba(255, 255, 255, .9); border-bottom: 1px solid var(--ps-line); }

.ps-header-inner { display: flex; min-height: 80px; align-items: center; justify-content: space-between; }

.ps-logo, .ps-footer-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ps-ink); text-decoration: none; font-size: 16px; font-weight: 500; letter-spacing: -.02em; }

.ps-logo strong, .ps-footer-logo strong { font-weight: 750; }

.ps-logo-mark { display: flex; width: 25px; height: 25px; align-items: flex-end; gap: 3px; padding: 5px; border-radius: 7px; background: var(--ps-teal); transform: skewY(-8deg); }

.ps-logo-mark span { width: 4px; border-radius: 3px; background: white; }

.ps-logo-mark span:nth-child(1) { height: 7px; opacity: .7; }

.ps-logo-mark span:nth-child(2) { height: 11px; opacity: .85; }

.ps-logo-mark span:nth-child(3) { height: 15px; }

.ps-login { color: var(--ps-blue); font-size: 14px; font-weight: 700; text-decoration: none; }

.ps-login span { display: inline-block; margin-left: 6px; transition: transform .2s ease; }

.ps-login:hover span { transform: translateX(3px); }

.ps-main { display: flex; flex: 1; align-items: center; padding: 45px 0 45px; }

.ps-hero { position: relative; display: flex; min-height: 500px; width: min(1120px, calc(100% - 48px)); margin-inline: auto; align-items: center; overflow: hidden; border: 1px solid var(--ps-line); border-radius: 18px; background: var(--ps-surface); box-shadow: 0 18px 55px rgba(24, 48, 68, .08); }

.ps-hero-content { position: relative; z-index: 1; width: min(630px, 100%); padding: 68px 72px; }

.ps-eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 23px; color: var(--ps-teal); font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.ps-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ps-coral); box-shadow: 0 0 0 5px rgba(217, 120, 95, .12); }

h1 { margin: 0; color: var(--ps-ink); font-size: clamp(42px, 5.2vw, 70px); font-weight: 700; letter-spacing: -.065em; line-height: 1.02; }

h1 em { color: var(--ps-blue); font-style: normal; }

.ps-intro { max-width: 550px; margin: 25px 0 32px; color: var(--ps-muted); font-size: 17px; line-height: 1.7; }

.ps-status { display: inline-flex; align-items: center; gap: 12px; padding: 12px 17px 12px 12px; border: 1px solid #d5e8e5; border-radius: 10px; background: #f2faf9; }

.ps-status-icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; background: var(--ps-teal); color: white; font-size: 14px; font-weight: 800; }

.ps-status strong, .ps-status small { display: block; }

.ps-status strong { color: var(--ps-ink); font-size: 13px; }

.ps-status small { margin-top: 1px; color: var(--ps-muted); font-size: 11px; }

.ps-hero-side { position: absolute; right: -35px; display: grid; width: 48%; height: 100%; place-items: center; background: #eaf5f4; clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%); }

.ps-orbit { position: absolute; border: 1px solid rgba(45, 107, 145, .2); border-radius: 50%; }

.ps-orbit-one { width: 300px; height: 300px; }

.ps-orbit-two { width: 200px; height: 200px; border-color: rgba(44, 154, 145, .3); }

.ps-orbit-three { width: 102px; height: 102px; background: rgba(255, 255, 255, .72); border-color: transparent; box-shadow: 0 12px 30px rgba(24, 48, 68, .08); }

.ps-compass { position: relative; z-index: 1; color: var(--ps-blue); font-size: 38px; font-weight: 300; letter-spacing: .05em; }

.ps-hero-grid { position: absolute; right: 35px; top: 30px; display: grid; grid-template-columns: repeat(4, 5px); gap: 9px; opacity: .5; }

.ps-hero-grid span { width: 5px; height: 5px; border-radius: 50%; background: var(--ps-teal); }

.ps-footer { background: var(--ps-ink); color: #b7c9d3; }

.ps-footer-inner { display: flex; min-height: 150px; align-items: center; justify-content: space-between; gap: 28px; }

.ps-footer-logo { color: white; }

.ps-footer p { margin: 7px 0 0; font-size: 12px; }

.ps-footer-right { display: flex; align-items: flex-end; flex-direction: column; gap: 12px; }

.ps-footer-right a { color: white; font-size: 13px; font-weight: 700; text-decoration: none; }

.ps-footer-right a span { color: #75c5bd; }

.ps-copyright { color: #8da5b3; font-size: 11px; }

.am-main { max-width: 100%; }

@media (min-width: 800px) {
    .am-body, .am-layout { background: none; }
}

@media (max-width: 760px) {
    .ps-container, .ps-hero { width: calc(100% - 32px); }

    .ps-header-inner { min-height: 70px; }

    .ps-main { padding: 35px 0 48px; }

    .ps-hero { min-height: 620px; align-items: flex-start; }

    .ps-hero-content { width: 100%; padding: 44px 28px; }

    .ps-hero-side { top: auto; right: 0; bottom: 0; width: 100%; height: 210px; clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%); }

    .ps-hero-grid { right: 24px; top: 22px; }

    .ps-footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 28px 0; }

    .ps-footer-right { align-items: flex-start; gap: 7px; }
}