:root {
    --bg: #f5f8ff;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --text: #0f172a;
    --muted: #4b5563;
    --line: #d8e3f4;
    --brand: #0b5fff;
    --brand-deep: #0b2545;
    --accent: #00a58f;
    --success: #0f9f74;
    --warning: #d78c00;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --shadow: 0 18px 44px rgba(11, 37, 69, 0.12);
    --shadow-soft: 0 10px 28px rgba(10, 26, 47, 0.08);
    --container: 1160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.58;
    background:
        radial-gradient(800px 460px at -8% -4%, rgba(126, 173, 255, 0.2), transparent 65%),
        radial-gradient(680px 420px at 110% 0%, rgba(73, 214, 186, 0.18), transparent 62%),
        linear-gradient(180deg, var(--bg) 0%, #ffffff 46%, #f8fbff 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

main {
    min-height: 70vh;
}

.container {
    width: min(var(--container), calc(100% - 2.2rem));
    margin-inline: auto;
}

.section {
    padding: 82px 0;
}

.section-sm {
    padding: 64px 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Sora", "Manrope", sans-serif;
    letter-spacing: -0.2px;
}

.lead {
    color: var(--muted);
    font-size: clamp(0.98rem, 1.6vw, 1.1rem);
    max-width: 64ch;
}

.page-bg-orb {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(52px);
    pointer-events: none;
    opacity: 0.3;
}

.orb-1 {
    width: 360px;
    height: 360px;
    right: -120px;
    top: 10%;
    background: #3f86ff;
}

.orb-2 {
    width: 420px;
    height: 420px;
    left: -170px;
    bottom: -140px;
    background: #2bc4a8;
}

.header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(245, 248, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 227, 244, 0.8);
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.76rem;
    text-decoration: none;
    min-width: 230px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dbe6f8;
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.12);
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 11px;
    background: #ffffff;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font: 700 1.02rem/1.2 "Sora", sans-serif;
    color: var(--text);
}

.brand-text span {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    color: #223148;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transition: width 0.24s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 0.7rem;
}

.mobile-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 10px;
    padding: 0.44rem 0.72rem;
    color: #27364a;
    font-weight: 700;
    cursor: pointer;
}

.btn {
    border: 0;
    border-radius: 12px;
    padding: 0.74rem 1.08rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    box-shadow: 0 10px 24px rgba(11, 95, 255, 0.28);
}

.btn-secondary {
    color: #1f2937;
    background: #ffffff;
    border: 1px solid var(--line);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.44rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #0c5ec8;
    background: #eaf2ff;
    border: 1px solid #cadeff;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    letter-spacing: 0.2px;
}

.hero {
    padding: 92px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 2rem;
}

.hero h1 {
    font-size: clamp(1.95rem, 4.6vw, 3.45rem);
    line-height: 1.1;
    margin: 0.95rem 0 0.95rem;
    max-width: 16ch;
}

.hero-actions {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tick-list {
    margin-top: 1.12rem;
    display: grid;
    gap: 0.6rem;
}

.tick-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #243345;
    font-weight: 600;
    font-size: 0.92rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    margin-top: 0.35rem;
    flex: 0 0 auto;
}

.panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 8px);
    padding: 1.3rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.panel::after {
    content: "";
    width: 140px;
    height: 140px;
    border-radius: 999px;
    position: absolute;
    right: -46px;
    top: -44px;
    background: radial-gradient(circle, rgba(11, 95, 255, 0.2), transparent 68%);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.72rem;
}

.panel-card {
    border-radius: 12px;
    border: 1px solid #dce8fa;
    background: #f8fbff;
    padding: 0.78rem;
}

.panel-card h4 {
    font-size: 0.84rem;
    margin-bottom: 0.28rem;
}

.panel-card p {
    color: var(--muted);
    font-size: 0.8rem;
}

.stat-strip {
    margin-top: 0.72rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.stat {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #ffffff;
    text-align: center;
    padding: 0.62rem;
}

.stat strong {
    display: block;
    font: 800 1.03rem/1 "Sora", sans-serif;
    color: var(--brand-deep);
}

.stat span {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 600;
}

.section-head {
    margin-bottom: 1.35rem;
    max-width: 68ch;
}

.section-head h2 {
    font-size: clamp(1.45rem, 3vw, 2.06rem);
    line-height: 1.2;
    margin: 0.6rem 0 0.7rem;
}

.section-head p {
    color: var(--muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.08rem;
    box-shadow: var(--shadow-soft);
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.55rem;
}

.card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.service {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.service p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.66rem;
}

.service ul {
    display: grid;
    gap: 0.35rem;
}

.service li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.83rem;
    color: #243347;
    font-weight: 600;
}

.portal-highlight {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: linear-gradient(146deg, #0b2545 0%, #0a3e68 50%, #0a6777 100%);
    color: #ffffff;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 20px 52px rgba(8, 37, 65, 0.32);
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.portal-highlight h2 {
    font-size: clamp(1.36rem, 2.8vw, 1.96rem);
    margin-bottom: 0.62rem;
}

.portal-highlight p {
    color: rgba(233, 246, 255, 0.94);
}

.portal-list {
    margin-top: 0.95rem;
    display: grid;
    gap: 0.54rem;
}

.portal-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #eaf6ff;
    font-size: 0.9rem;
    font-weight: 600;
}

.mock {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    overflow: hidden;
}

.mock-head {
    border-bottom: 1px solid #dce7f7;
    padding: 0.72rem 0.88rem;
    background: #f5f8ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.mock-head strong {
    font-size: 0.83rem;
}

.mock-state {
    font-size: 0.7rem;
    font-weight: 800;
    color: #0b6a5f;
    background: #e6f8f2;
    border: 1px solid #bee8da;
    border-radius: 999px;
    padding: 0.2rem 0.48rem;
}

.mock-body {
    padding: 0.66rem 0.88rem 0.92rem;
}

.mock-row {
    display: grid;
    grid-template-columns: 1.7fr 0.85fr 0.82fr;
    gap: 0.56rem;
    align-items: center;
    border-bottom: 1px dashed #d5e2f3;
    padding: 0.5rem 0;
    font-size: 0.77rem;
}

.mock-row:last-child {
    border-bottom: 0;
}

.mock-row.head {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    font-weight: 800;
    color: #6b7280;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid;
    font-size: 0.67rem;
    font-weight: 800;
    padding: 0.2rem 0.44rem;
}

.pill-ok {
    color: #116b55;
    background: #e8f9f2;
    border-color: #bde8d8;
}

.pill-warn {
    color: #8a5a00;
    background: #fff2d3;
    border-color: #efcf90;
}

.pill-run {
    color: #0b5bb8;
    background: #e7f0ff;
    border-color: #bad2ff;
}

.note {
    margin-top: 0.76rem;
    border-radius: 10px;
    border: 1px solid #dce8fa;
    background: #f6f9ff;
    color: #5a687b;
    font-size: 0.77rem;
    padding: 0.6rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.timeline-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.timeline-index {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--brand), var(--accent));
    color: #ffffff;
    font: 800 0.9rem/1 "Sora", sans-serif;
    margin-bottom: 0.62rem;
}

.timeline-item h3 {
    font-size: 0.96rem;
    margin-bottom: 0.44rem;
}

.timeline-item p {
    color: var(--muted);
    font-size: 0.85rem;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.quote {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #ffffff;
    padding: 1.1rem;
}

.quote p {
    color: var(--muted);
    margin-bottom: 0.85rem;
}

.quote strong {
    font-size: 0.9rem;
}

.quote span {
    display: block;
    margin-top: 0.2rem;
    color: #6b7280;
    font-size: 0.78rem;
}

.table-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    overflow-x: auto;
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

thead th {
    text-align: left;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #51627a;
    background: #f5f8ff;
    border-bottom: 1px solid var(--line);
    padding: 0.72rem 0.8rem;
}

tbody td {
    border-bottom: 1px solid #e9eff8;
    padding: 0.72rem 0.8rem;
    font-size: 0.88rem;
}

tbody tr:last-child td {
    border-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 1rem;
    align-items: start;
}

.contact-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #ffffff;
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.contact-list {
    margin-top: 0.65rem;
    display: grid;
    gap: 0.55rem;
}

.contact-list li {
    list-style: none;
    font-size: 0.9rem;
    color: #23354a;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-weight: 600;
}

form {
    display: grid;
    gap: 0.8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2c3f54;
}

.field input,
.field select,
.field textarea {
    border: 1px solid #cfdcf1;
    border-radius: 10px;
    padding: 0.66rem 0.72rem;
    background: #ffffff;
    font: 600 0.88rem/1.4 "Manrope", sans-serif;
    color: #122033;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 2px solid rgba(11, 95, 255, 0.16);
    border-color: #9fc0ff;
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.form-note {
    font-size: 0.78rem;
    color: #5f6f84;
}

.alert {
    display: none;
    border-radius: 10px;
    border: 1px solid #cae3ff;
    background: #edf5ff;
    color: #1f3f63;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.62rem 0.7rem;
}

.alert.show {
    display: block;
}

.cta {
    border-radius: var(--radius-lg);
    border: 1px solid #d3e3ff;
    background:
        linear-gradient(130deg, rgba(11, 95, 255, 0.1) 0%, rgba(0, 165, 143, 0.12) 100%),
        #ffffff;
    box-shadow: var(--shadow);
    padding: clamp(1.2rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta h2 {
    font-size: clamp(1.35rem, 3vw, 1.95rem);
    margin-bottom: 0.48rem;
}

.cta p {
    color: #42526a;
    max-width: 64ch;
}

.footer {
    margin-top: 64px;
    border-top: 1px solid var(--line);
    background: #f8fbff;
    padding: 24px 0 30px;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: #4d5f77;
    font-size: 0.84rem;
}

.footer-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.footer-nav a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: #314760;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

@media (max-width: 1060px) {
    .hero-grid,
    .portal-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-4,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .nav-links.open {
        display: grid;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 76px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: #ffffff;
        padding: 0.95rem;
        box-shadow: var(--shadow);
        gap: 0.7rem;
    }

    .nav-links.open a {
        padding-bottom: 0.3rem;
    }

    .hero {
        padding-top: 72px;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 66px 0;
    }

    .section-sm {
        padding: 52px 0;
    }

    .grid-3,
    .grid-4,
    .timeline,
    .panel-grid,
    .stat-strip,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .mock-row {
        grid-template-columns: 1fr;
        gap: 0.26rem;
    }

    .mock-row.head {
        display: none;
    }

    .btn {
        width: 100%;
    }
}
