:root {
    --bg: #f3f7ff;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --brand: #2563eb;
    --brand-2: #0ea5e9;
    --brand-3: #7c3aed;
    --radius: 16px;
    --shadow: 0 14px 34px rgba(15, 23, 42, .1);
    --max: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(120deg, #07132c, #0f2d66 60%, #144288);
    border-bottom: 1px solid rgba(191, 219, 254, .3);
}

.topbar-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    color: #f8fbff;
    font-weight: 800;
    letter-spacing: .01em;
}

.nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.nav a {
    color: #dbeafe;
    font-weight: 700;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 10px;
}

.nav a:hover {
    background: rgba(191, 219, 254, .15)
}

.nav a.active {
    background: rgba(59, 130, 246, .3);
    border-color: rgba(191, 219, 254, .55)
}

.hero {
    position: relative;
    overflow: hidden;
    color: #f8fbff;
    padding: 86px 0 74px;
    background:
        radial-gradient(1200px 520px at 0% -20%, rgba(59, 130, 246, .55), transparent 48%),
        radial-gradient(1000px 500px at 100% 0%, rgba(14, 165, 233, .45), transparent 50%),
        radial-gradient(800px 500px at 50% 110%, rgba(124, 58, 237, .35), transparent 52%),
        linear-gradient(160deg, #08142f 0%, #0b1f47 56%, #102b63 100%);
}

.blob {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .45;
    animation: float 11s ease-in-out infinite;
}

.blob.one {
    background: #3b82f6;
    top: -70px;
    left: -60px
}

.blob.two {
    background: #7c3aed;
    right: -80px;
    top: 20px;
    animation-delay: 2s
}

.blob.three {
    background: #0ea5e9;
    left: 40%;
    bottom: -120px;
    animation-delay: 4s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-22px)
    }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    border: 1px solid rgba(191, 219, 254, .6);
    background: rgba(59, 130, 246, .23);
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.hero p {
    color: #dbeafe;
    font-size: 1.03rem;
    max-width: 760px
}

.btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: .94rem;
    font-weight: 800
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .35)
}

.btn-secondary {
    background: rgba(14, 165, 233, .2);
    color: #dbeafe;
    border-color: rgba(125, 211, 252, .45)
}

.hero-card {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(191, 219, 254, .45);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    padding: 18px;
}

.hero-card h3 {
    margin-bottom: 10px
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 10px
}

.hero-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #f1f5f9;
    font-size: .93rem
}

.ok {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(22, 163, 74, .3);
    color: #86efac;
    font-weight: 800;
    font-size: .8rem
}

.section {
    padding: 64px 0
}

.title {
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.subtitle {
    color: var(--muted);
    max-width: 780px;
    margin-bottom: 26px
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    height: 100%;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem
}

.card p {
    color: var(--muted);
    font-size: .94rem
}

.menu-cards .menu-card {
    position: relative;
    min-height: 140px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

.menu-cards .menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: .35s ease;
}

.menu-cards .menu-card:hover img {
    transform: scale(1.08)
}

.menu-cards .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .1), rgba(15, 23, 42, .72));
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.menu-cards .overlay span {
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
}

.moving-gallery {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 14px;
    animation: scroll 26s linear infinite;
}

.track img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #dbeafe;
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.feature-list {
    display: grid;
    gap: 12px
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.quote p {
    font-style: italic;
    color: #334155;
    margin-bottom: 10px
}

.quote strong {
    font-size: .92rem
}

.table-wrap {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: auto;
    box-shadow: var(--shadow);
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    padding: 13px 15px;
    text-align: left;
    border-bottom: 1px solid var(--line)
}

th {
    background: #edf4ff;
    color: #1e3a8a;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

tr:last-child td {
    border-bottom: 0
}

.video {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #1e293b;
    background: #0f172a;
}

.video .frame {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
}

.video .body {
    padding: 12px
}

.video .body h4 {
    color: #e2e8f0;
    margin-bottom: 6px
}

.video .body p {
    color: #cbd5e1;
    font-size: .88rem
}

.cta {
    background: linear-gradient(130deg, #08142f, #102b63 60%, #144288);
    color: #e2e8f0;
}

.footer {
    padding: 54px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: center
}

.contact {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(191, 219, 254, .36);
    border-radius: 14px;
    padding: 16px;
}

.contact ul {
    list-style: none;
    display: grid;
    gap: 8px
}

.contact a {
    color: #93c5fd;
    font-weight: 800
}

.mini {
    margin-top: 14px;
    color: #93a4c6;
    font-size: .83rem
}

@media (max-width:1024px) {

    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:760px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .btn {
        width: 100%
    }

    .topbar-wrap {
        padding: 12px 0
    }
}