:root {
    --blue: #003DC4;
    --pink: #E42D96;
    --text: #0a0a0a;
    --muted: #5A5A5A;
    --line: rgba(0, 0, 0, .08);
    --bg: #F5F5F5;
    --soft: #F5F5F5;
    --radius: 30px;
    --container: 1100px;
}

* {
    box-sizing: border-box;
}


/* Header */
.site-header {
    background: #f5f5f5;
}

.header-inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.site-nav a {
    font-size: 18px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
    color: var(--blue);
}

.site-nav .shop-link {
    min-width: 145px;
    padding: 14px 34px;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    text-align: center;
}

.site-nav .shop-link:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 780px) {
    .header-inner {
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        gap: 18px;
    }

    .site-logo img {
        width: 150px;
    }

    .site-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-nav a {
        font-size: 16px;
    }

    .site-nav .shop-link {
        min-width: 120px;
        padding: 12px 26px;
    }
}


/* Footer */


.site-footer {
    background: var(--blue);
    color: white;
    padding: 100px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.footer-brand img {
    width: 220px;
    height: auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.footer-col a {
    color: white;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-col a:hover {
    opacity: 0.75;
    transform: translateX(3px);
}

.footer-contact {
    gap: 14px;
}

@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 64px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col a:hover {
        transform: none;
    }
}

/* Body */

body {
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

/* Sections */
.section {
    padding: 54px 0;
}



.section--tight {
    padding: 30px 0 80px;
    background: linear-gradient(to bottom,
            #f8e9f1 25%,
            #F5F5F5 50%);
}


.section--stats {
    padding: 0 0 54px;
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.kicker {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, .75);
    letter-spacing: .25px;
}

.h1 {
    font-size: 54px;
    line-height: 60px;
    margin: 14px 0 14px;
    font-weight: 800;
}

.h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 12px;
    font-weight: 800;
}

.h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    font-weight: 800;
}

.p {
    margin: 0;
    color: rgba(0, 0, 0, .75);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .25px;
}

.buttons {
    border: 0;
    padding: 15px 60px;
    border-radius: 30px;
    background-color: #003DC4;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}


.buttons .material-symbols-outlined {
    transition: transform 0.3s ease;
}

.buttons:hover {
    background-color: #E42D96;
    transform: translateY(-3px);
}

.buttons:hover .material-symbols-outlined {
    transform: translateX(15px);
}

/* Slider */
.slider {
    padding: 22px 0;
    background: var(--soft);
}

.wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}

.wrapper::before,
.wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--soft), transparent);
}

.wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--soft), transparent);
}

.track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: scroll 10s linear infinite;
}

.group {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
    padding-right: 60px;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 60px));
    }
}

@media (max-width: 600px) {
    .buttons {
        width: 100%;
        justify-content: center;
        gap: 12px;
        padding: 15px 24px;
    }
}


/* Hero */
.hero {
    padding: 44px 0 22px;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    display: block;
}

.phone__glow {
    position: absolute;
    z-index: 1;
    width: 520px;
    height: 340px;
    right: -30px;
    top: 52%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(228, 45, 150, 0.22) 0%,
            rgba(228, 45, 150, 0.10) 45%,
            rgba(228, 45, 150, 0) 75%);
    filter: blur(40px);
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phone {
        order: -1;
        margin-bottom: 10px;
    }

    .phone img {
        max-width: 320px;
    }

    .phone__glow {
        width: 320px;
        height: 240px;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
        filter: blur(35px);
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 28px 0 10px;
    }

    .hero__grid {
        gap: 20px;
    }

    .phone img {
        max-width: 240px;
    }

    .phone__glow {
        width: 240px;
        height: 180px;
    }

    .buttons {
        width: 100%;
        justify-content: center;
    }
}


.logos {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 18px;
    opacity: .7;
}

.logo-pill {
    height: 28px;
    padding: 0 10px;
    border: 1px dashed var(--line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(0, 0, 0, .6);
}


/* “Your style…” avatars */
.grid-img {
    display: block;
    width: 100%;
    height: auto;
    left: 4%;
}

.style-section {
    position: relative;
    background: #fff;
    overflow: visible;
    z-index: 1;
    padding: 54px;
    min-height: 600px;
}

.style-top {
    margin-bottom: 28px;
}

.style-top .h2 {
    margin: 0;
}

.grid-img {
    display: block;
    width: 100%;
    height: auto;
}

.stylegrid {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    gap: 32px;
}

.style-left {
    display: flex;
    justify-content: flex-start;
}

.style-right {
    position: relative;
}

.avatars {
    max-width: 280px;
    border-radius: 28px;
    background: #f7f7f7;
    padding: 26px 22px;
    text-align: center;
}

.avatars img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    margin: 0 auto 18px;

}

.avatars .endo {
    width: 45px;
    height: 45px;
    position: relative;
    border-image: round;
    top: 40px;
    left: 55px;
    background: white;
    border-radius: 100%;
    display: flex;
    padding: 10px;

}

.avatars h3 {
    margin: 0 0 8px;

    line-height: 1.1;
    font-weight: 800;
    color: var(--blue);
}

.avatars p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.72);
}

.avatars p strong {
    color: var(--blue);
    font-weight: 800;
}

.style-right img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
}

.connections-legend {
    position: absolute;
    justify-self: center;
    width: 260px;
    background: #f2f2f2;
    border-radius: 28px;
    padding: 20px 15px 15px;
    text-align: center;
    z-index: 2;
}


@media (max-width: 780px) {
    .style-section {
        padding: 42px 0;
        min-height: auto;
        overflow: hidden;
    }

    .stylegrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .style-top {
        text-align: center;
    }

    .style-left {
        justify-content: center;
    }

    .avatars {
        max-width: 260px;
        margin: 0 auto;
    }

    .style-right {
        width: 100%;
        overflow: visible;
    }

    .style-right img.grid-img {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .connections-legend {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: min(260px, 90%);
        margin: 18px auto 0;
    }
}

.connections-legend p {
    font-size: 14px;
    margin: 0;
    font-weight: 800;
    line-height: 1.25;
}

.legend-pink {
    color: #E46ACD;
    font-size: 14px;
}

.legend-blue {
    color: #1148D8;
    font-size: 14px;
    margin-top: 6px !important;
}

.legend-gray {
    color: #A9A9A9;
    font-size: 14px;
    margin-top: 6px !important;
}

.mission-section {
    padding: 24px 0 54px;
}

.banner {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 32px;
    background-image: url("../assets/banner_1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: background 0.3s ease;
}

.banner:hover::before {
    background: rgba(0, 0, 0, 0.28);
}

.banner__inner {
    position: relative;
    z-index: 1;
    min-height: 400px;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.banner__inner .h2,
.banner__inner p {
    color: white;
}

.mission-content {
    position: relative;
    z-index: 1;
    margin-top: -22px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 32px 32px;
    padding: 42px 32px 36px;
}

.stats__top {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 42px;
}

.stats__top h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #202020;
}

.stats__top h3 span {
    color: var(--blue);
}

.stats__top .p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
}

.cards {
    padding-inline: 25px;
    padding-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 42px;
}

.card {
    background: transparent;
    border: 0;
    padding: 0;
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 16px;
}

.card__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--blue);
}

.card__text {
    max-width: 250px;
    width: auto;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
}



@media (max-width: 900px) {
    .stats__top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .panel {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .stats__top h3 {
        font-size: 20px;
    }

    .card__title {
        font-size: 20px;
    }

    .card__text,
    .stats__top .p {
        font-size: 15px;
    }
}

/* How it works */
.how-section {
    background: linear-gradient(to top,
            #f8e9f1 0%,
            #f8e9f1 25%,
            #F5F5F5 100%);
    overflow: hidden;
}

.how {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 40px;
    align-items: center;
    min-height: 620px;
}

.how__left {
    display: flex;
    justify-content: flex-start;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    color: #8e8e98;
}

.li:last-child {
    margin-bottom: 0;
}

.dot {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 999px;
    border: 1.5px solid #a9a9b2;
    color: #7d7d86;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
}

.li.active {
    color: var(--blue);
    font-weight: 700;
}

.li.active .dot {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}

.how__phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how__phone::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 604px;
    height: 604px;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(228, 45, 150, 0.26) 0%,
            rgba(228, 45, 150, 0.14) 32%,
            rgba(228, 45, 150, 0.05) 55%,
            rgba(228, 45, 150, 0) 76%);
    filter: blur(90px);
    pointer-events: none;
}

.how__phone img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 285px;
    height: auto;
    filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.22));
}

@media (max-width: 1000px) {
    .how {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        min-height: auto;
    }

    .li {
        font-size: 18px;
    }

    .how__phone::before {
        width: 620px;
        height: 620px;
    }

    .how__phone img {
        max-width: 285px;
    }
}

@media (max-width: 780px) {
    .how {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .how__left {
        justify-content: center;
    }

    .list {
        width: 100%;
        max-width: 420px;
    }

    .li {
        font-size: 18px;
        justify-content: flex-start;
    }

    .how__phone {
        order: -1;
    }

    .how__phone::before {
        width: 480px;
        height: 480px;
        top: 55%;
    }

    .how__phone img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .how-section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .li {
        gap: 12px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .dot {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }

    .how__phone::before {
        width: 360px;
        height: 360px;
        filter: blur(70px);
    }

    .how__phone img {
        max-width: 240px;
    }
}


.market-section {
    background: linear-gradient(to top, #f6e8ef 0%, #ffffff 100%);
}

.market-btn {
    width: auto;
    min-width: 210px;
    max-width: 240px;
    padding: 14px 28px;
    gap: 18px;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 600px) {
    .market-btn {
        width: auto;
        min-width: 190px;
        max-width: 220px;
        padding: 13px 24px;
    }
}

.shop {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(620px, 1.18fr);
    gap: 48px;
    align-items: start;
}

.shop__left {
    min-width: 0;
}

.shop__right {
    min-width: 0;
}


.market-title {
    margin: 0 0 34px;
    line-height: 1.02;
}

.market-title span {
    color: var(--blue);
}

.shoplist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 26px;
}

.shopitem {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: start;
}

.check {
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    margin-top: 3px;
}

.shopitem strong {
    display: block;
    margin-bottom: 4px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
}

.shopitem p {
    margin: 0;
    max-width: 270px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 14px;
    line-height: 1.38;
}

.market-card {
    background: #fff;
    border-radius: 30px;
    padding: 18px 18px 22px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.tab {
    border: 0;
    background: #f7f4f8;
    color: var(--blue);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}

.tab:hover {
    transform: translateY(-1px);
}

.tab.is-active {
    background: #ffffff;
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.market-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.market-content.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.featured {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
}

.featured__content {
    min-height: auto;
}

.featured__image {
    min-height: 220px;
}

.featured__image img {
    display: block;
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
}

.featured__content h3 {
    font-size: 20px;
    max-width: 320px;
}

.featured__text {
    min-height: auto;
}

.featured__brand {
    margin: 0 0 16px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 14px;
    text-transform: capitalize;
}

.featured__text {
    margin: 0 0 18px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.featured__text p {
    margin: 0;
}

.other-products__title {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product__image img,
.product img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: #f5f5f5;
}

.product__name {
    margin: 10px 0 4px;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
}

.product__meta {
    margin: 0;
    color: rgba(0, 0, 0, 0.45);
    font-size: 12px;
}

.market-empty {
    background: #f7f4f8;
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
}

.market-empty__title {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 20px;
    font-weight: 800;
}

.market-empty__text {
    margin: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .shop {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .market-title {
        text-align: center;
    }

    .shopitem p {
        max-width: none;
    }
}

@media (max-width: 780px) {
    .featured {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .tabs {
        grid-template-columns: 1fr;
    }

    .market-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .featured__content h3 {
        font-size: 18px;
    }

    .tab {
        padding: 12px 14px;
        font-size: 13px;
    }

    .shopitem {
        grid-template-columns: 20px 1fr;
        gap: 12px;
    }
}



/* Mission / FAQ */
.mission {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 50px;
    align-items: start;
}

.mission-block {
    padding: 24px 0 54px;
}

.faq-section {
    background: white;

}



.art {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background-image: url("../assets/banner_2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
}

.art::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: background 0.3s ease;
}

.art:hover::before {
    background: rgba(0, 0, 0, 0.28);
}



.art p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 320px;
    font-weight: 200;
    font-size: 18px;
    line-height: 1.35;
    color: white;
}

details {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px 16px;
    background: #f5f5f5;
    width: 85%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

details:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    background: #fafafa;
}

details+details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--blue);
    list-style: none;
    position: relative;
    padding-right: 34px;
    transition: color 0.25s ease;
}

summary:hover {
    color: #E42D96;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 22px;
    font-weight: 400;
    color: var(--blue);
    transition: transform 0.25s ease, color 0.25s ease;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: #E42D96;
}

details p {
    margin: 12px 0 0;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
    animation: faqFade 0.25s ease;
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 900px) {
    .mission {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .art {
        height: auto;
        min-height: 420px;
        padding: 28px;
    }

    .art p {
        max-width: 100%;
        font-size: 16px;
    }

    .mission>div:last-child {
        width: 100%;
    }

    details {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .art {
        min-height: 360px;
        padding: 24px;
    }

    summary {
        font-size: 15px;
    }

    details p {
        font-size: 14px;
    }
}

/* Magazine callout */
.mag {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 14px;
    flex-wrap: wrap;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;

}

.mag h1 {
    font-size: 32px;
    line-height: 1.2;
}

.mag strong {
    font-weight: 800;
}

.mag .btn {
    height: 44px;
}

/* For & For */
.cta-banner__inner {
    position: relative;
    background-image: url("../assets/banner_3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    overflow: hidden;
    padding: 52px 34px 32px;
    min-height: 520px;
    width: 100%;
}

.cta-banner__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: background 0.3s ease;
}

.cta-banner__inner:hover::before {
    background: rgba(0, 0, 0, 0.24);
}

.cta-banner__intro,
.cta-banner__cards {
    padding-top: 22px;
    position: relative;
    z-index: 1;
}

.cta-banner__intro {
    text-align: center;
    margin-bottom: 26px;
}

.cta-banner__intro p {
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
}

.cta-banner__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    border-radius: 22px;
    padding: 24px 24px 30px;
    text-align: center;
}

.cta-card h4 {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.cta-card p {
    margin: 0 0 24px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 14px;
    line-height: 1.4;
}

.cta-card__actions {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.outline-btn {
    min-width: 220px;
    padding: 14px 24px;
    border: 1.5px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.outline-btn:hover {
    background-color: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.outline-btn .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.outline-btn:hover .material-symbols-outlined {
    transform: translateX(6px);
}

@media (max-width: 900px) {
  .cta-banner__inner {
    min-height: auto;
    height: auto;
    overflow: visible;
    padding: 40px 22px 28px;
  }

  .cta-banner__cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cta-card {
    width: 100%;
  }
}