:root {
    --bg: #07111f;
    --bg-soft: #0f1d31;
    --panel: rgba(10, 20, 35, 0.78);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --text: #f4f7fb;
    --muted: #b8c7da;
    --line: rgba(255, 255, 255, 0.14);
    --accent: #7ef0c5;
    --accent-strong: #32c7ff;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Instrument Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(50, 199, 255, 0.2), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(126, 240, 197, 0.16), transparent 24%),
        linear-gradient(160deg, #040813 0%, #091426 45%, #0f2037 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

body::before {
    top: 90px;
    right: 8%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(126, 240, 197, 0.1);
}

body::after {
    bottom: 120px;
    left: 6%;
    width: 300px;
    height: 300px;
    border-radius: 40px;
    background: rgba(50, 199, 255, 0.08);
    transform: rotate(18deg);
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.hero,
.panel,
.bottom-banner,
.feature-card {
    backdrop-filter: blur(18px);
}

.hero {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(9, 18, 33, 0.9), rgba(9, 18, 33, 0.58));
    box-shadow: var(--shadow);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 56px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-home {
    text-decoration: none;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #03131d;
    background: linear-gradient(135deg, var(--accent), #dcfff0);
    box-shadow: 0 10px 30px rgba(126, 240, 197, 0.35);
}

.eyebrow,
.brand-subtitle,
.section-tag,
.contact-label,
.feature-index {
    margin: 0;
}

.eyebrow,
.section-tag,
.contact-label,
.feature-index {
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow,
.section-tag,
.contact-label {
    color: var(--accent);
    font-size: 0.78rem;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-link,
.button,
.inline-link,
.footer-link {
    text-decoration: none;
}

.contact-link {
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-link:hover,
.button:hover {
    transform: translateY(-2px);
}

.contact-link:hover {
    border-color: rgba(126, 240, 197, 0.5);
    background: rgba(126, 240, 197, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

.hero-copy {
    width: 100%;
}

.hero-copy h1,
.panel-heading h2,
.bottom-banner h2 {
    margin: 12px 0 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 0.95;
}

.hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.6rem, 8vw, 6.8rem);
}

.hero-title-wide {
    max-width: 100%;
    font-size: clamp(2.55rem, 4.4vw, 4.15rem);
    line-height: 0.98;
    text-wrap: balance;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.hero-text,
.intro-grid p,
.feature-card p,
.readiness-item p,
.contact-card p,
.bottom-banner p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.03rem;
}

.hero-text {
    max-width: 100%;
    margin: 22px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button-primary {
    color: #051521;
    background: linear-gradient(135deg, var(--accent), #c9fff0);
    box-shadow: 0 18px 40px rgba(126, 240, 197, 0.22);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
}

.panel,
.feature-card,
.contact-card,
.bottom-banner {
    border: 1px solid var(--line);
    background: var(--panel);
}

.wordmark-panel {
    margin-top: 34px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(50, 199, 255, 0.12), rgba(126, 240, 197, 0.07)),
        rgba(8, 17, 29, 0.72);
    box-shadow: var(--shadow);
}

.wordmark-kicker {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text);
}

.wordmark-line {
    width: min(220px, 100%);
    height: 2px;
    margin: 18px 0 16px;
    background: linear-gradient(90deg, var(--accent), rgba(50, 199, 255, 0));
}

.wordmark-copy {
    margin: 0;
    max-width: 100%;
    color: var(--muted);
    line-height: 1.75;
}

.panel,
.bottom-banner {
    margin-top: 26px;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.panel-heading h2,
.bottom-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.intro-grid,
.readiness-grid,
.contact-grid,
.feature-strip {
    display: grid;
    gap: 18px;
}

.intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.feature-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
}

.services-intro {
    max-width: 72ch;
    margin: 22px 0 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.03rem;
}

.readiness-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.feature-card {
    padding: 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(126, 240, 197, 0.35);
}

.feature-index {
    color: var(--accent-strong);
    font-size: 0.85rem;
}

.feature-card h3,
.readiness-item h3,
.contact-card h3 {
    margin: 10px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
}

.contact-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 22px;
}

.readiness-item,
.contact-card {
    padding: 22px;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.readiness-item {
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(50, 199, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(8, 17, 29, 0.76);
    box-shadow: var(--shadow);
}

.contact-card {
    min-height: 100%;
}

.readiness-item:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(126, 240, 197, 0.35);
}

.contact-card.emphasis {
    background:
        linear-gradient(180deg, rgba(126, 240, 197, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(8, 17, 29, 0.82);
}

.inline-link {
    color: var(--text);
    border-bottom: 1px solid rgba(126, 240, 197, 0.3);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.inline-link:hover {
    color: var(--accent);
    border-color: rgba(126, 240, 197, 0.75);
}

.bottom-banner {
    overflow: hidden;
    position: relative;
}

.bottom-banner::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 240, 197, 0.2), transparent 65%);
}

.verification-note {
    margin-top: 18px;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 26px;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(8, 17, 29, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-mark {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
}

.footer-copy,
.footer-legal {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-link {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-link:hover {
    transform: translateY(-2px);
    border-color: rgba(126, 240, 197, 0.5);
    background: rgba(126, 240, 197, 0.08);
}

.footer-legal {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
}

.simple-page .page-shell {
    width: min(980px, calc(100% - 32px));
}

.simple-page .hero {
    margin-bottom: 0;
}

.simple-page .hero-grid {
    grid-template-columns: 1fr;
}

.simple-page .topbar {
    margin-bottom: 42px;
}

.simple-page .section-tag {
    margin-bottom: 10px;
}

.simple-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.simple-page .hero-text {
    max-width: 100%;
    font-size: 1rem;
}

.simple-page .hero-actions {
    margin-top: 24px;
}

.simple-page .hero-copy {
    max-width: 100%;
}

.legal-layout {
    margin-top: 26px;
    display: grid;
    gap: 26px;
}

.legal-content {
    display: grid;
    gap: 18px;
}

.legal-block {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(8, 17, 29, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.legal-block h2,
.legal-block h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
}

.legal-block p,
.legal-block li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-block ul {
    margin: 0;
    padding-left: 20px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.support-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(8, 17, 29, 0.78);
    box-shadow: var(--shadow);
}

.support-card h2,
.support-card h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
}

.support-card p,
.support-card li {
    color: var(--muted);
    line-height: 1.75;
}

.support-card ul {
    margin: 0;
    padding-left: 20px;
}

@media (max-width: 980px) {
    .hero-grid,
    .intro-grid,
    .readiness-grid,
    .feature-strip,
    .contact-grid,
    .site-footer,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-wide {
        font-size: clamp(2.25rem, 6vw, 3.35rem);
    }

    .wordmark-panel {
        padding: 24px;
    }

    .panel,
    .bottom-banner,
    .site-footer {
        padding-left: 26px;
        padding-right: 26px;
    }

    .feature-card,
    .readiness-item,
    .contact-card,
    .support-card,
    .legal-block {
        padding: 22px;
    }

    .simple-page .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.6rem, 7vw, 4rem);
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 10px;
        padding-bottom: 34px;
    }

    .hero,
    .panel,
    .bottom-banner {
        padding: 20px;
        border-radius: 24px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .brand-lockup {
        align-items: flex-start;
        gap: 12px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.2rem;
    }

    .brand-subtitle {
        font-size: 0.9rem;
    }

    .topbar-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 17vw, 4.5rem);
    }

    .hero-title-wide {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.02;
    }

    .hero-text {
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .wordmark-panel {
        margin-top: 24px;
        padding: 20px;
    }

    .wordmark-kicker {
        font-size: clamp(2.2rem, 14vw, 3.4rem);
    }

    .wordmark-line {
        margin: 14px 0 14px;
    }

    .panel,
    .bottom-banner,
    .site-footer,
    .feature-card,
    .readiness-item,
    .contact-card,
    .support-card,
    .legal-block {
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .simple-page .page-shell {
        width: min(100% - 20px, 980px);
    }

    .simple-page .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.15rem, 11vw, 3.2rem);
        line-height: 1.02;
    }

    .simple-page .topbar {
        margin-bottom: 24px;
    }

    .simple-page .section-tag {
        margin-bottom: 8px;
    }

    .simple-page .hero-text,
    .services-intro,
    .legal-block p,
    .legal-block li,
    .support-card p,
    .support-card li {
        font-size: 0.97rem;
        line-height: 1.68;
    }

    .button,
    .contact-link,
    .footer-link {
        width: 100%;
        min-width: 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 22px;
    }

    .legal-layout {
        gap: 18px;
    }

    .legal-block,
    .support-card {
        padding: 20px;
    }

    .feature-card,
    .readiness-item,
    .contact-card {
        padding: 18px;
    }

    .panel,
    .bottom-banner {
        margin-top: 18px;
    }

    .feature-strip,
    .intro-grid,
    .readiness-grid,
    .contact-grid,
    .support-grid,
    .legal-content {
        gap: 14px;
    }

    .feature-card h3,
    .readiness-item h3,
    .contact-card h3,
    .support-card h2,
    .legal-block h2 {
        font-size: 1.18rem;
    }

    .panel-heading h2,
    .bottom-banner h2 {
        font-size: clamp(1.7rem, 9vw, 2.35rem);
        line-height: 1.05;
    }

    .footer-links {
        gap: 10px;
    }

    .site-footer {
        margin-top: 18px;
        padding: 20px;
        border-radius: 24px;
    }
}