﻿
:root {
    --brand: #0b4f6c;
    --brand-2: #1282a2;
    --accent: #f4f9fc;
    --ok: #0f7b0f;
    --warn: #8a2a2a;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 8px 24px rgba(0,0,0,.06);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 18px;
    --spacing: clamp(14px,1.5vw,22px);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
}

a {
    color: inherit
}

.lp-wrap {
    max-width: 1100px;
    margin: auto;
    padding: clamp(16px,2vw,28px)
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: clamp(10px,1vw,16px)
}

.brand {
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--brand)
}

.util-nav {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}
/* Reusable buttons */
.btn {
    appearance: none;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    padding: .65rem .9rem;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1
}

    .btn.secondary {
        background: #fff;
        color: var(--brand)
    }

    .btn.ghost {
        background: #fff;
        border-color: var(--border);
        color: #0f1b2a
    }

    .btn:focus {
        outline: 3px solid #bfe6ff;
        outline-offset: 2px
    }
/* Useful Links Menu (pure HTML/CSS using <details>) */
.menu {
    position: relative
}

    .menu > summary {
        list-style: none
    }

        .menu > summary::-webkit-details-marker {
            display: none
        }

    .menu > summary {
        display: inline-flex;
        align-items: center;
        gap: .5rem
    }

    .menu .menu-button {
        display: inline-flex;
        align-items: center;
        gap: .5rem
    }

    .menu[open] .menu-button {
        box-shadow: var(--shadow)
    }

.menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: .5rem;
    z-index: 10;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .25rem
}

    .menu-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .55rem .7rem;
        border-radius: 10px;
        text-decoration: none;
        border: 1px solid transparent
    }

        .menu-list a:hover {
            background: #f8fafc;
            border-color: #edf2f7
        }
/* Hero */
.lp-hero {
    background: linear-gradient(135deg,var(--accent),#fff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: calc(var(--spacing) * 1.4);
    box-shadow: var(--shadow)
}

    .lp-hero h1 {
        margin: 0 0 6px 0;
        font-size: clamp(22px,3vw,34px);
        color: var(--brand)
    }

    .lp-hero p {
        margin: 0;
        color: var(--muted);
        font-size: clamp(14px,1.3vw,16px)
    }
/* Sections & cards */
.lp-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: calc(var(--spacing) * 1.1);
    margin-top: calc(var(--spacing) * 1.1);
    box-shadow: var(--shadow)
}

    .lp-section h3 {
        margin: 0 0 .4rem 0;
        font-size: clamp(16px,1.6vw,20px);
        color: #0f1b2a
    }

.lp-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px,1.6vw,22px);
    margin-top: calc(var(--spacing) * 1.0)
}

.lp-card {
    grid-column: span 6;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: calc(var(--spacing) * 1.0);
    box-shadow: var(--shadow)
}

@media (max-width: 820px) {
    .lp-card {
        grid-column: span 12
    }
}

.lp-card h2 {
    margin: 0 0 6px 0;
    font-size: clamp(18px,1.8vw,22px);
    color: #0f1b2a
}

.lp-badge {
    display: inline-block;
    font-size: 12px;
    background: #e8f5ff;
    color: var(--brand);
    border: 1px solid #d7ecff;
    padding: .2rem .55rem;
    border-radius: 999px;
    margin-left: .4rem;
    vertical-align: middle
}

.lp-list {
    margin: .4rem 0 0 0;
    padding-left: 1.15rem
}

    .lp-list li {
        margin: .35rem 0
    }

.lp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem
}
/* Steps list */
.steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: .2rem 0 0 0
}

    .steps li {
        counter-increment: step;
        display: flex;
        gap: .8rem;
        align-items: flex-start;
        padding: .55rem 0;
        border-top: 1px dashed var(--border)
    }

        .steps li:first-child {
            border-top: none
        }

        .steps li::before {
            content: counter(step);
            flex: 0 0 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid var(--brand-2);
            color: var(--brand-2);
            display: grid;
            place-items: center;
            font-weight: 700;
            margin-top: .1rem
        }
/* Tables & notices */
.fees {
    width: 100%;
    border-collapse: collapse;
    margin-top: .5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 15px
}

    .fees th, .fees td {
        padding: .7rem .8rem;
        border-bottom: 1px solid var(--border);
        vertical-align: top
    }

    .fees thead th {
        background: #f8fafc;
        text-align: left;
        color: #0f1b2a
    }

.notice {
    background: #fff9e8;
    border: 1px solid #ffe7a3;
    color: #7a5d00;
    border-radius: var(--radius);
    padding: .8rem .9rem;
    margin-top: .8rem
}

.chip {
    display: inline-block;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .25rem .6rem;
    font-size: 12px;
    color: var(--muted);
    margin-left: .4rem;
    background: #fff
}

.muted {
    color: var(--muted);
    font-size: 14px
}

.danger {
    color: var(--warn);
    font-weight: 700
}

.ok {
    color: var(--ok);
    font-weight: 700
}

.footnotes {
    font-size: 13px;
    color: var(--muted);
    margin-top: .6rem
}
