:root {
    --navy: #18145b;
    --purple: #6834d8;
    --purple-soft: #8d63ee;
    --pink: #ff5a9c;
    --pink-soft: #ffeaf4;
    --peach: #fff4ed;
    --mint: #eafff9;
    --sky: #edf7ff;
    --lavender: #f3edff;
    --ink: #201a58;
    --muted: #615f88;
    --line: rgba(104, 52, 216, 0.16);
    --white: #ffffff;
    --shadow: 0 22px 54px rgba(72, 38, 158, 0.15);
    --soft-shadow: 0 14px 34px rgba(255, 90, 156, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.62;
    background:
        radial-gradient(circle at top left, rgba(255, 90, 156, 0.14), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #fff8fc 48%, #ffffff 100%);
}

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

a {
    color: inherit;
}

a:focus-visible {
    outline: 3px solid rgba(255, 90, 156, 0.72);
    outline-offset: 4px;
}

.container {
    width: min(1080px, calc(100% - 42px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: inherit;
    text-decoration: none;
}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(104, 52, 216, 0.22);
}

.brand-wordmark {
    display: block;
    padding-top: 6px;
}

.brand-name {
    display: block;
    position: relative;
    width: max-content;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 0.78;
    color: #7f5bf0;
    text-shadow: 0 2px 10px rgba(127, 91, 240, 0.18);
}

.brand-name::after {
    content: "\2665";
    position: absolute;
    top: -9px;
    right: 33px;
    color: #8060f4;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-4deg);
}

.brand-subtitle {
    display: block;
    margin-top: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}

.nav-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
}

.nav-links a,
.footer-links a {
    text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--pink);
}

.hero {
    padding: 70px 0 76px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 44px;
    align-items: center;
}

.kicker {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--purple);
    background: #f0e9ff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Baloo 2", "Nunito", sans-serif;
    line-height: 1.03;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 760px;
    color: var(--purple);
    font-size: 70px;
}

h2 {
    color: var(--purple);
    font-size: 44px;
}

h3 {
    color: var(--navy);
    font-size: 24px;
}

.pink {
    color: var(--pink);
}

.hero-copy > p {
    max-width: 680px;
    margin-top: 18px;
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
}

.hero-copy strong {
    color: var(--pink);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--purple);
    box-shadow: 0 12px 26px rgba(104, 52, 216, 0.28);
    font-weight: 900;
    text-decoration: none;
}

.button.secondary {
    color: var(--purple);
    background: var(--white);
    border: 2px solid var(--line);
    box-shadow: none;
}

.hero-card {
    padding: 22px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.section {
    padding: 74px 0;
}

.section.white {
    background: var(--white);
}

.section-head {
    max-width: 720px;
    margin-bottom: 30px;
}

.section-head p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card,
.faq-item {
    padding: 24px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
}

.card:nth-child(1) {
    background: linear-gradient(135deg, #fff, var(--lavender));
}

.card:nth-child(2) {
    background: linear-gradient(135deg, #fff, var(--mint));
}

.card:nth-child(3) {
    background: linear-gradient(135deg, #fff, var(--peach));
}

.card p,
.faq-item p,
.text-block p,
.text-block li {
    color: var(--muted);
    font-size: 17px;
    font-weight: 800;
}

.card p {
    margin-top: 8px;
}

.text-block {
    display: grid;
    gap: 18px;
    max-width: 820px;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 36px;
    align-items: center;
}

.story-copy {
    display: grid;
    gap: 18px;
}

.story-copy p,
.story-points li {
    color: var(--muted);
    font-size: 17px;
    font-weight: 800;
}

.story-points {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 22px;
}

.founder-photo {
    overflow: hidden;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--pink-soft);
    box-shadow: var(--shadow);
}

.founder-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.story-note {
    padding: 28px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
}

.story-note strong {
    display: block;
    color: var(--purple);
    font-family: "Baloo 2", "Nunito", sans-serif;
    font-size: 30px;
    line-height: 1.06;
}

.story-note span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 800;
}

.text-block ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 22px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.related-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
}

.related-card strong {
    color: var(--purple);
    font-size: 20px;
}

.related-card span {
    color: var(--muted);
    font-weight: 800;
}

.cta {
    padding: 62px 0;
    background: linear-gradient(135deg, #f4e8ff, #fff3fb 70%, #fff);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cta-box p {
    max-width: 700px;
    margin-top: 10px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
}

.site-footer {
    padding: 34px 0;
    color: var(--muted);
    background: var(--white);
    font-weight: 800;
}

.footer-copy {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

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

    .hero-grid,
    .story-layout,
    .cta-box {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 34px;
    }

    .hero-copy > p {
        font-size: 18px;
    }

    .grid,
    .faq-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        width: min(420px, 100%);
        margin: 0 auto;
    }

    .hero {
        padding-top: 44px;
    }
}
