:root {
    --bg: #0b1020;
    --bg-soft: #111827;
    --surface: #ffffff;
    --surface-soft: #f4f6fb;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #14b8a6;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(15, 23, 42, .14);
    --radius: 22px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.container.narrow {
    max-width: 820px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 99;
}

.skip-link:focus {
    left: 10px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 231, 235, .8);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 850;
    letter-spacing: .02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 30px rgba(37, 99, 235, .28);
}

.brand-text {
    font-size: 1.15rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    text-decoration: none;
    color: #374151;
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 650;
    font-size: .95rem;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--surface-soft);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    display: block;
    border-radius: 99px;
}

.hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .35), transparent 28%),
        radial-gradient(circle at 82% 15%, rgba(20, 184, 166, .28), transparent 25%),
        linear-gradient(135deg, #07111f, #111827 55%, #0b1020);
    color: var(--white);
    padding: 92px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 42px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}
.eyebrow1 {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 8.88rem;
}

h1, h2, h3 {
    line-height: 1.12;
    margin: 0 0 18px;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    letter-spacing: -.055em;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -.035em;
}

h3 {
    font-size: 1.25rem;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.28rem);
    color: rgba(255, 255, 255, .82);
    max-width: 780px;
}

.page-hero .lead {
    color: #4b5563;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
}

.btn.primary {
    background: var(--primary);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--primary-dark);
}

.btn.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
}

.page-hero .btn.ghost {
    color: var(--text);
    border-color: var(--line);
}

.hero-card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    border-radius: var(--radius);
    padding: 34px;
    backdrop-filter: blur(16px);
}

.hero-card p,
.hero-card li {
    color: rgba(255, 255, 255, .78);
}

.hero-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, .12);
    margin-bottom: 18px;
}

.section {
    padding: 78px 0;
}

.section-title {
    max-width: 780px;
    margin-bottom: 34px;
}

.cards {
    display: grid;
    gap: 22px;
}

.cards.three {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.notice,
.contact-box,
.timeline-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 16px 50px rgba(15, 23, 42, .06);
}

.card p,
.notice p,
.timeline-item p,
.muted {
    color: var(--muted);
}

.page-hero {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 74px 0 42px;
    border-bottom: 1px solid var(--line);
}

.narrow h2 {
    margin-top: 34px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.check-list li {
    padding: 12px 0 12px 34px;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--accent);
    font-size: .85rem;
    font-weight: 900;
}

.timeline-item {
    margin-bottom: 18px;
}

.timeline-item span {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-box a {
    color: var(--primary);
    font-weight: 800;
}

.site-footer {
    background: var(--bg);
    color: var(--white);
    padding: 42px 0 26px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 28px;
}

.site-footer p {
    color: rgba(255, 255, 255, .68);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    padding-top: 22px;
    color: rgba(255, 255, 255, .56);
    font-size: .92rem;
}