* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f6f7fb
}

:root {
    --brand: #6c2bd9;
    --brand-2: #10b981;
    --ink: #111827;
    --muted: #6b7280;
    --paper: #ffffff;
    --paper-2: #0b1020;
    --accent: #f59e0b
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

h1, h2, h3, h4 {
    margin: 0 0 .6rem 0;
    line-height: 1.25
}

h1 {
    font-weight: 800
}

h2 {
    font-weight: 800
}

p {
    margin: 0 0 1rem 0
}

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

a:hover {
    opacity: .85
}

.btn {
    display: inline-block;
    padding: .85rem 1.2rem;
    border-radius: .7rem;
    font-weight: 700;
    border: 1px solid transparent
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn-ghost {
    background: transparent;
    border-color: var(--brand);
    color: var(--brand)
}

.hero {
    background: linear-gradient(135deg, var(--paper-2), #1b2650 60%, #0f172a);
    color: #e5e7eb
}

.hero .content {
    padding: 80px 0
}

.hero .badge {
    display: inline-block;
    background: rgba(255, 255, 255, .08);
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .9rem
}

.grid {
    display: grid;
    gap: 24px
}

.grid-2 {
    display: grid;
    grid-template-columns:1fr;
    align-items: start;
    gap: 24px
}

.grid-3 {
    display: grid;
    grid-template-columns:1fr;
    align-items: start;
    gap: 24px
}

.card {
    background: var(--paper);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
    padding: 24px
}

.section {
    padding: 64px 0
}

.section.dark {
    background: #0e1328;
    color: #dbeafe
}

.section.soft {
    background: #eef2ff
}

.kicker {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--brand)
}

.lead {
    font-size: 1.15rem;
    color: #334155
}

.small {
    font-size: .95rem;
    color: var(--muted)
}

.split {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: 28px
}

.imgframe {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .18)
}

.figure {
    position: relative
}

.figure:after {
    content: "";
    position: absolute;
    inset: -12px -12px auto auto;
    width: 140px;
    height: 140px;
    background: conic-gradient(from 90deg at 50% 50%, var(--brand), var(--accent), var(--brand-2), var(--brand));
    filter: blur(24px);
    border-radius: 50%;
    opacity: .3
}

.list {
    display: grid;
    gap: 14px
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: .6rem;
    background: rgba(108, 43, 217, .1);
    color: var(--brand)
}

.footer {
    background: #0a0f21;
    color: #cbd5e1;
    padding: 40px 0
}

.footer a {
    color: #93c5fd
}

.input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: .7rem;
    background: #fff;
    font: inherit
}

input:focus, textarea:focus, select:focus {
    outline: 3px solid rgba(108, 43, 217, .25);
    border-color: var(--brand)
}

.formgrid {
    display: grid;
    gap: 14px;
    grid-template-columns:1fr
}

label {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem;
    display: block
}

address {
    font-style: normal
}

.cta {
    background: linear-gradient(135deg, var(--brand), #4c1d95 60%, #1f2937);
    color: #fff
}

.badge-year {
    font-weight: 800;
    background: #0ea5e9;
    color: #032538;
    border-radius: .5rem;
    padding: .25rem .55rem;
    display: inline-block
}

figure {
    margin: 0
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0
}

.tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: .3rem .7rem;
    color: #111827
}

@media (min-width: 920px) {
    .grid-2 {
        grid-template-columns:1fr 1fr
    }

    .grid-3 {
        grid-template-columns:repeat(3, 1fr)
    }

    .formgrid {
        grid-template-columns:1fr 1fr
    }
}


@media screen and (max-width: 767px){
    .split{
        grid-template-columns: minmax(0,1fr);
    }
}

img {
    max-width: 100%;
}