:root {
    color-scheme: light;
    --bg: #fffaf0;
    --ink: #172033;
    --muted: #657084;
    --primary: #5b5ce2;
    --primary-dark: #3838a8;
    --accent: #ffb84d;
    --mint: #3ccf91;
    --border: #e8eaf6;
    --shadow: 0 24px 70px rgba(32, 41, 84, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top left, rgba(255, 184, 77, 0.22), transparent 32rem), radial-gradient(circle at 85% 10%, rgba(91, 92, 226, 0.16), transparent 28rem), linear-gradient(180deg, #fffaf0 0%, #f7f8ff 48%, #ffffff 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a:hover {
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(232, 234, 246, 0.8);
    background: rgba(255, 250, 240, 0.86);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 1rem 0;
}

.brand,
.nav-links,
.hero-actions,
.footer-links {
    display: flex;
    align-items: center;
}

.brand {
    gap: 0.7rem;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand:hover,
.footer-brand:hover,
.button:hover {
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, var(--primary), #20b8ff);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(91, 92, 226, 0.28);
}

.nav-links,
.footer-links {
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) 0 4rem;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow,
.section-label {
    margin: 0 0 0.85rem;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.7rem);
}

h2 {
    font-size: clamp(2rem, 4.6vw, 3.7rem);
}

h3 {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.hero-text,
.section-copy p,
.promise-section p,
.feature-copy article p,
.company-section p {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-text {
    margin: 1.4rem 0 0;
    max-width: 640px;
    font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.hero-actions {
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(91, 92, 226, 0.25);
}

.button.secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual img,
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid rgba(255, 255, 255, 0.78);
    border-radius: 2.2rem;
    box-shadow: var(--shadow);
}

.hero-visual img {
    position: absolute;
    inset: 0;
}

.floating-card {
    position: absolute;
    max-width: 260px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(32, 41, 84, 0.16);
    backdrop-filter: blur(12px);
}

.floating-card span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.floating-card strong {
    color: var(--ink);
}

.top-card {
    top: 2rem;
    left: -1rem;
}

.bottom-card {
    right: -1rem;
    bottom: 2rem;
}

.section {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto clamp(1.5rem, 4vw, 3rem);
}

.split-section,
.feature-band,
.company-section,
.promise-section {
    border: 1px solid var(--border);
    border-radius: 2.4rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.steps-card {
    display: grid;
    gap: 1rem;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    background: #ffffff;
}

.step span {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border-radius: 0.95rem;
    background: rgba(255, 184, 77, 0.23);
    color: #9a5b00;
    font-weight: 900;
}

.step p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.feature-band {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    padding: clamp(1rem, 2vw, 1.5rem);
}

.feature-image {
    min-height: 460px;
}

.feature-copy {
    align-self: center;
    padding: clamp(1rem, 3vw, 2rem);
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-list article {
    padding-left: 1rem;
    border-left: 4px solid var(--mint);
}

.feature-list p {
    margin: 0.35rem 0 0;
}

.promise-section {
    padding: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    background: linear-gradient(135deg, rgba(91, 92, 226, 0.1), rgba(255, 184, 77, 0.16)), rgba(255, 255, 255, 0.86);
}

.promise-section p {
    max-width: 760px;
    margin: 1rem auto 0;
}

.company-section {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 23, 45, 0.96), rgba(56, 56, 168, 0.92));
    color: #ffffff;
}

.company-section::before,
.company-section::after {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    content: "";
    filter: blur(4px);
    opacity: 0.24;
}

.company-section::before {
    top: -8rem;
    left: -5rem;
    background: var(--accent);
}

.company-section::after {
    right: -6rem;
    bottom: -9rem;
    background: #20b8ff;
}

.company-section>* {
    position: relative;
    z-index: 1;
}

.company-section h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #ffffff;
}

.company-section p {
    max-width: 720px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.78);
}

.company-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.company-meta {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.company-meta span,
.company-meta a {
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 800;
}

.site-footer {
    display: grid;
    gap: 1.25rem;
    justify-items: center;
    padding: 2.5rem max(1rem, calc((100% - 1160px) / 2));
    background: #12172d;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-company p,
.copyright {
    margin: 0;
}

.footer-company p {
    max-width: 620px;
    margin-inline: auto;
}

.site-footer strong,
.site-footer a {
    color: #ffffff;
}

.footer-links {
    justify-content: center;
}

.copyright {
    width: min(760px, 100%);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    text-align: center;
}

.legal-main {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 4rem 0;
}

.legal-card {
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--border);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.legal-card h1 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.legal-card h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

@media (max-width: 900px) {

    .hero,
    .split-section,
    .feature-band,
    .company-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 430px;
    }

    .feature-image {
        min-height: 360px;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero-visual {
        min-height: 360px;
    }

    .floating-card {
        max-width: 220px;
    }

    .top-card {
        left: 0.5rem;
    }

    .bottom-card {
        right: 0.5rem;
    }

    .step {
        grid-template-columns: 1fr;
    }
}
