:root {
    --teal: #079aaa;
    --dark-teal: #087f87;
    --aqua: #7cc6d9;
    --deep: #10272d;
    --soft-bg: #f5fbfc;
    --white: #ffffff;
    --text: #1e2d32;
    --muted: #64777d;
    --line: rgba(7, 154, 170, 0.22);
    --shadow: 0 24px 70px rgba(16, 39, 45, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(124, 198, 217, 0.24), transparent 34rem),
        linear-gradient(180deg, var(--white) 0%, var(--soft-bg) 100%);
    line-height: 1.6;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

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

.logo-wrap {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: min(245px, 58vw);
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-nav a {
    color: var(--deep);
    font-weight: 700;
}

.hero {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    padding: 76px 0;
}

.hero-inner {
    display: grid;
    place-items: center;
}

.announcement-card {
    width: min(900px, 100%);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(34px, 6vw, 72px);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 9px;
    background: linear-gradient(90deg, var(--dark-teal), var(--teal), var(--aqua));
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 13px;
}

h1 {
    margin: 0;
    color: var(--deep);
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.message {
    margin: 28px auto 0;
    max-width: 760px;
    font-size: clamp(18px, 2.2vw, 25px);
    color: var(--text);
}

.message a {
    font-weight: 800;
    white-space: nowrap;
}

.contact-strip {
    margin: 42px auto 0;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(7, 154, 170, 0.10), rgba(124, 198, 217, 0.20));
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-strip span {
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.contact-strip strong {
    color: var(--deep);
    font-size: 20px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(7, 154, 170, 0.26);
}

.phone-button:hover {
    background: var(--dark-teal);
    text-decoration: none;
}

.site-footer {
    background: var(--deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 34px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 190px;
    height: auto;
    display: block;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 720px) {
    .header-inner {
        min-height: 82px;
        justify-content: center;
        flex-direction: column;
        padding: 16px 0;
    }

    .site-nav {
        gap: 18px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 44px 0;
    }

    .announcement-card {
        border-radius: 22px;
    }

    .contact-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .phone-button {
        width: 100%;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ===== Synergetix layout override: wider sold-out card, one-screen fit ===== */

.site-logo {
    width: auto;
    max-width: 260px;
    max-height: 105px;
}

.header-inner {
    min-height: 120px;
}

.hero {
    min-height: calc(100vh - 120px);
    padding: 34px 0;
    align-items: center;
}

.announcement-card {
    width: 80vw;
    max-width: 1480px;
    padding: clamp(28px, 4vw, 48px);
}

h1 {
    font-size: clamp(40px, 5.2vw, 64px);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.message {
    max-width: 1050px;
    font-size: clamp(18px, 1.65vw, 24px);
    line-height: 1.55;
}

.contact-strip {
    max-width: 980px;
    margin-top: 32px;
}

.site-footer {
    padding: 20px 0;
}

.footer-logo {
    width: auto;
    max-width: 170px;
    max-height: 70px;
}

@media (max-width: 900px) {
    .announcement-card {
        width: 92vw;
    }

    .hero {
        padding: 28px 0;
    }

    h1 {
        font-size: clamp(34px, 9vw, 48px);
    }
}

/* ===== Synergetix FINAL layout fix: no-scroll one-page composition ===== */

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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.site-header {
    position: relative;
    flex: 0 0 auto;
}

.header-inner {
    min-height: 82px !important;
    padding: 8px 0 !important;
}

.site-logo {
    width: auto !important;
    max-width: 190px !important;
    max-height: 70px !important;
}

.site-nav {
    gap: 24px;
    font-size: 13px;
}

main {
    flex: 1 1 auto;
    display: flex;
    min-height: 0;
}

.hero {
    flex: 1 1 auto;
    min-height: 0 !important;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 18px 0 22px !important;
}

.hero-inner {
    width: 100%;
}

.announcement-card {
    width: 80vw !important;
    max-width: 1500px !important;
    min-height: 0;
    padding: 34px 56px 34px !important;
    border-radius: 22px;
}

.eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
}

h1 {
    font-size: clamp(38px, 4.2vw, 56px) !important;
    line-height: 1.02;
    margin-bottom: 22px;
}

.message {
    max-width: 1120px !important;
    margin-top: 0 !important;
    font-size: clamp(17px, 1.35vw, 22px) !important;
    line-height: 1.45 !important;
}

.contact-strip {
    max-width: 920px !important;
    margin-top: 24px !important;
    padding: 14px 20px !important;
    border-radius: 16px;
}

.contact-strip span {
    font-size: 12px;
}

.contact-strip strong {
    font-size: 18px;
}

.phone-button {
    min-height: 38px;
    padding: 0 20px;
    font-size: 15px;
}

.site-footer {
    flex: 0 0 auto;
    padding: 10px 0 !important;
}

.footer-inner {
    min-height: 34px;
}

.footer-logo {
    max-width: 120px !important;
    max-height: 42px !important;
}

.site-footer p {
    font-size: 12px;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 76px !important;
    }

    .site-logo {
        max-width: 170px !important;
        max-height: 62px !important;
    }

    .site-nav {
        gap: 16px;
        font-size: 11px;
    }

    .hero {
        padding: 16px 0 !important;
    }

    .announcement-card {
        width: 92vw !important;
        padding: 28px 22px !important;
    }

    h1 {
        font-size: clamp(32px, 8vw, 44px) !important;
    }

    .message {
        font-size: 17px !important;
        line-height: 1.45 !important;
    }

    .contact-strip {
        gap: 10px;
    }
}

/* ===== Synergetix nav removal cleanup ===== */

.header-inner {
    justify-content: center !important;
}

.site-nav {
    display: none !important;
}
