@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,500;0,7..72,600;1,7..72,400&family=Manrope:wght@400;500;600&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.index2-page {
    --index2-bg: #f9f7f4;
    --index2-white: #ffffff;
    --index2-ink: #1c1916;
    --index2-ink-2: #6e6862;
    --index2-ink-3: #a8a099;
    --index2-accent: #c4522a;
    --index2-line: rgba(26, 24, 21, 0.08);
    --index2-parent: #c4522a;
    --index2-babysitter: #7c4dff;
    --index2-party: #c49a2a;
    --index2-serif: "Literata", serif;
    --index2-sans: "Manrope", system-ui, -apple-system, sans-serif;

    margin: 0;
    min-height: 100vh;
    font-family: var(--index2-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--index2-ink);
    background: var(--index2-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
    font-optical-sizing: auto;
}

body.index2-page h1:not(.hero-headline),
body.index2-page h2:not(.index2-card-title),
body.index2-page .serif {
    font-family: var(--index2-serif);
    font-weight: 500;
    font-optical-sizing: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

body.index2-page .public-drawer-label,
body.index2-page .public-footer-nav a,
body.index2-page .public-footer-copy {
    font-family: var(--index2-sans);
}


/* Main */
.index2-hero {
    position: relative;
    min-height: calc(100vh - var(--public-topbar-height));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
    background:
        radial-gradient(circle at 18% 22%, rgba(196, 82, 42, 0.1), transparent 34%),
        radial-gradient(circle at 82% 28%, rgba(124, 77, 255, 0.08), transparent 30%),
        linear-gradient(to bottom, #fffaf4, var(--index2-bg));
}

.index2-hero::before,
.index2-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    animation: index2FloatBlob 12s ease-in-out infinite;
}

.index2-hero::before {
    width: 320px;
    height: 320px;
    background: rgba(196, 82, 42, 0.14);
    top: -60px;
    left: -80px;
}

.index2-hero::after {
    width: 280px;
    height: 280px;
    background: rgba(124, 77, 255, 0.12);
    bottom: -40px;
    right: -60px;
    animation-delay: 3s;
}

@keyframes index2FloatBlob {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -10px) scale(1.03); }
    50% { transform: translate(0, 14px) scale(0.98); }
    75% { transform: translate(-18px, -6px) scale(1.02); }
    100% { transform: translate(0, 0) scale(1); }
}

.index2-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index2-header {
    text-align: center;
    max-width: 690px;
    margin-bottom: 60px;
}

.index2-step-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 26px;
    font-family: var(--index2-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--index2-ink-3);
}

.index2-card-icon img,
.index2-card > img {
    display: block;
    width: 82px;
    height: 82px;
    max-width: 82px;
    max-height: 82px;
    object-fit: contain;
}

.index2-step-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--index2-ink-3);
    flex-shrink: 0;
}

.index2-step-dot--active {
    width: 16px;
    border-radius: 100px;
    background: var(--index2-accent);
}

.index2-header .hero-headline {
    margin: 0 auto 18px;
}

.index2-subtitle {
    margin: 0 auto;
    max-width: 75%;
    font-family: var(--index2-sans);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.005em;
    color: var(--index2-ink-2);
}

/* Cards */
.index2-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 340px));
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.index2-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 320px;
    padding: 40px 36px 36px;
    background: var(--index2-white);
    border-radius: 20px;
    border: 1px solid var(--index2-line);
    box-shadow: 0 8px 28px rgba(26, 24, 21, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.index2-card--parent {
    border-color: rgba(196, 82, 42, 0.22);
}

.index2-card--babysitter {
    border-color: rgba(124, 77, 255, 0.22);
}

.index2-card--party {
    border-color: rgba(196, 154, 42, 0.28);
}

.index2-card--parent:hover {
    border-color: var(--index2-parent);
    box-shadow: 0 16px 40px rgba(196, 82, 42, 0.1);
}

.index2-card--babysitter:hover {
    border-color: var(--index2-babysitter);
    box-shadow: 0 16px 40px rgba(124, 77, 255, 0.1);
}

.index2-card--party:hover {
    border-color: var(--index2-party);
    box-shadow: 0 16px 40px rgba(196, 154, 42, 0.12);
}

.index2-card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 78px;
    height: 78px;
    margin-bottom: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.index2-card--parent .index2-card-icon img,
.index2-card--parent > img {
    width: 86px;
    height: 86px;
    max-width: 86px;
    max-height: 86px;
}

.index2-card--party .index2-card-icon img,
.index2-card--party > img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
}

.index2-card-label {
    display: block;
    margin-bottom: 12px;
    font-family: var(--index2-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--index2-ink-3);
}

.index2-card-title {
    margin: 0 0 16px;
    font-family: --public-display;
    font-size: clamp(1.32rem, 2vw, 1.65rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: var(--index2-ink);
}

.index2-card-text {
    margin: 0;
    flex: 1;
    font-family: var(--index2-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: 0.002em;
    color: var(--index2-ink-2);
}

.index2-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 34px;
    font-family: var(--index2-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--index2-accent);
}

.index2-card--babysitter .index2-card-arrow {
    color: var(--index2-babysitter);
}

.index2-card--party .index2-card-arrow {
    color: var(--index2-party);
}

/* Trust */
.index2-trust-wrap {
    margin-top: 54px;
    text-align: center;
}

.index2-trust-heading {
    margin: 0 0 18px;
    font-family: var(--index2-sans);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--index2-ink-2);
}

.index2-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.index2-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--index2-sans);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--index2-ink-2);
}

.index2-trust-item svg {
    color: var(--index2-accent);
    flex-shrink: 0;
}

.index2-trust-sep {
    width: 1px;
    height: 16px;
    background: var(--index2-line);
}

/* Responsive */
@media (max-width: 1080px) {
    .index2-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .index2-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .index2-hero {
        padding: 40px 20px 64px;
        align-items: flex-start;
    }

    .index2-card-label {
        font-size: 12px;
    }

    .index2-card-text {
        font-size: 15px;
    }

    .index2-header {
        margin-bottom: 44px;
    }

    .index2-subtitle {
        max-width: none;
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .index2-card-title {
        font-size: 26px;
    }

    .index2-trust-sep {
        display: none;
    }

    .index2-trust {
        flex-direction: column;
        gap: 12px;
    }

    .index2-trust-wrap {
        margin-top: 44px;
    }

    .index2-card {
        padding: 32px 28px 28px;
    }

    .index2-card-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 24px;
    }

    .index2-card-icon img,
    .index2-card > img {
        width: 82px;
        height: 82px;
        max-width: 82px;
        max-height: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .index2-hero::before,
    .index2-hero::after {
        animation: none;
    }
}
