:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e5e7eb;
    --bg: #ffffff;
    --soft: #f8fafc;
    --brand: #2563eb;
    --brand-2: #22d3ee;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --radius: 18px
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: linear-gradient(180deg, #fff, var(--soft));
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
    line-height: 1.65
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px
}

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

a:hover {
    text-decoration: underline
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px
}

.site {
    min-height: 100%;
    display: flex;
    flex-direction: column
}

/* Top navigation */
.topbar {
    border-bottom: 1px solid var(--line);
    background: #fff
}

.bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px
}

.brand {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0b1220;
    background: linear-gradient(135deg, #93c5fd, #22d3ee);
    padding: 8px 12px;
    border-radius: 12px
}

.nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.nav a {
    font-size: 14px;
    color: var(--ink);
    opacity: .85
}

.nav a:hover {
    opacity: 1
}

/* Hero */
.hero {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    background: #fff
}

.hero-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1.2fr;
    align-items: center
}

.hero-left h1 {
    margin: 0 0 10px;
    font-size: 34px
}

.movie {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 16px;
    box-shadow: var(--shadow)
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
}

/* Main */
.main {
    display: grid;
    gap: 28px;
    padding: 28px 0
}

.section {
    padding: 0
}

.section.alt {
    background: linear-gradient(180deg, transparent, #f1f5f9)
}

/* Card */
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    overflow: hidden
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #2563eb, #22d3ee)
}

.flow>*+* {
    margin-top: 12px
}

h2 {
    margin: 0 0 10px;
    font-size: 22px
}

h3 {
    margin: 14px 0 6px;
    font-size: 18px
}

.faq h4 {
    margin: 14px 0 6px
}

.faq p {
    margin: 0 0 12px
}

/* Lists and tables from content */
ol,
ul {
    padding-left: 18px;
    margin: 0 0 8px
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line)
}

th,
td {
    padding: 10px 12px
}

th {
    background: #eff6ff;
    color: #0b1220;
    text-align: left
}

td {
    background: #fff
}

tr+tr td {
    border-top: 1px solid var(--line)
}

/* Footer */
.footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: #fff
}

.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 0
}

.foot-brand {
    font-weight: 800
}

.links {
    display: flex;
    gap: 14px
}

.map {
    border-top: 1px solid var(--line)
}

.map iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block
}

.legal {
    text-align: center;
    color: var(--muted);
    padding: 12px 0;
    font-size: 13px
}