:root {
    --navy: #073c62;
    --blue: #0f5f8f;
    --blue-2: #1677a9;
    --sky: #dff3fb;
    --gold: #d7a640;
    --ink: #102432;
    --muted: #60717d;
    --line: rgba(15, 95, 143, .16);
    --card: rgba(255, 255, 255, .92);
    --shadow: 0 28px 80px rgba(9, 43, 65, .16);
}

* { 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(--ink);
    background:
      radial-gradient(circle at 10% 0%, rgba(23,119,169,.16), transparent 34%),
      radial-gradient(circle at 95% 90%, rgba(215,166,64,.13), transparent 30%),
      linear-gradient(145deg, #f7fbfd 0%, #eef7fb 50%, #f9fbfc 100%);
    overflow-x: hidden;
}

a { color: inherit; }

.page-shell {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .23;
    background-image:
      linear-gradient(rgba(15,95,143,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,95,143,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    z-index: -2;
}
.orb-one {
    width: 360px;
    height: 360px;
    top: -180px;
    right: -70px;
    background: rgba(15,95,143,.13);
}
.orb-two {
    width: 320px;
    height: 320px;
    bottom: -175px;
    left: -100px;
    background: rgba(215,166,64,.12);
}

.site-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 34px;
}

.hero-card {
    width: min(1120px, 100%);
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}
.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--navy), var(--blue-2), var(--gold));
}

.brand-row,
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 36px;
}
.brand-row { border-bottom: 1px solid var(--line); }
.footer-row {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(247,252,254,.4), rgba(239,247,250,.72));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}
.logo-wrap {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(15,95,143,.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(7,60,98,.09);
    overflow: hidden;
}
.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.brand-copy { display: grid; gap: 3px; }
.brand-kicker {
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
}
.brand-name {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 750;
    color: var(--navy);
    max-width: 440px;
}

.status-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(15,95,143,.08);
    border: 1px solid rgba(15,95,143,.13);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(215,166,64,.14);
}

.hero-content {
    padding: 70px 64px 64px;
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(15,95,143,.07);
    color: var(--blue);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1 {
    margin: 20px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .98;
    letter-spacing: -.045em;
    color: var(--navy);
}
.subtitle {
    max-width: 780px;
    margin: 18px auto 0;
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.48;
    color: #35566a;
    font-weight: 560;
}
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 34px auto 30px;
}
.separator span {
    width: 90px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}
.description {
    margin: 0 auto;
    max-width: 820px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.project-meta {
    margin: 42px auto 0;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(250,253,254,.88);
    box-shadow: 0 12px 30px rgba(7,60,98,.05);
}
.meta-item {
    min-width: 165px;
    padding: 8px 22px;
    display: grid;
    gap: 4px;
}
.meta-label {
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 10px;
    font-weight: 850;
    color: #7b909c;
}
.meta-value {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}
.meta-divider {
    width: 1px;
    background: var(--line);
}

.coming-soon-block {
    margin: 44px auto 0;
    padding: 29px 28px;
    border-radius: 22px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(7,60,98,.98), rgba(15,95,143,.95)),
      var(--navy);
    box-shadow: 0 18px 46px rgba(7,60,98,.22);
    position: relative;
    overflow: hidden;
}
.coming-soon-block::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -55px;
    top: -100px;
    background: rgba(255,255,255,.08);
}
.coming-soon-label {
    display: block;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}
.coming-soon-title {
    margin-top: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
}
.coming-soon-block p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
}

.footer-row > div { display: grid; gap: 4px; }
.footer-row strong {
    color: var(--navy);
    font-size: 13px;
}
.footer-row span {
    color: #6d808b;
    font-size: 12px;
}
.footer-note { text-align: right; }

@media (max-width: 760px) {
    .site-main { padding: 16px; }
    .hero-card { border-radius: 22px; }
    .brand-row,
    .footer-row { padding: 22px; }
    .brand-row { align-items: flex-start; }
    .brand-copy { display: none; }
    .logo-wrap { width: 68px; height: 68px; border-radius: 17px; }
    .hero-content { padding: 50px 23px 36px; }
    .description { font-size: 15.5px; line-height: 1.75; }
    .project-meta {
        width: 100%;
        flex-direction: column;
        padding: 8px;
    }
    .meta-item { min-width: 0; padding: 13px; }
    .meta-divider { width: 100%; height: 1px; }
    .footer-row { align-items: flex-start; flex-direction: column; }
    .footer-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
