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

:root {
    --purple: #6236ff;
    --purple-hover: #4f28e0;
    --purple-soft: #f3eefc;
    --purple-navy: #2b1b62;
    --lime: #c1ff52;
    --lime-text: #b6e62a;
    --lime-hover: #b3f24a;
    --gold: #c1ff52;
    --text: #1a1230;
    --muted: #6b6580;
    --bg: #ffffff;
    --white: #ffffff;
    --border: #ece8f5;
    --shadow: 0 10px 28px rgba(43, 27, 98, 0.07);
    --shadow-hover: 0 18px 40px rgba(98, 54, 255, 0.14);
    --font: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(98, 54, 255, 0.16);
    color: var(--purple-navy);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

button,
input {
    font-family: inherit;
}

input[type="search"] {
    appearance: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.62rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(98, 54, 255, 0.22);
}

.btn-primary:hover {
    background: var(--purple-hover);
    box-shadow: 0 10px 22px rgba(98, 54, 255, 0.3);
}

.btn-outline {
    background: var(--white);
    color: var(--purple);
    border-color: var(--purple);
}

.btn-outline:hover {
    background: var(--purple-soft);
}

.btn-lime {
    background: var(--lime);
    color: var(--purple-navy);
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.btn-lime:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(193, 255, 82, 0.35);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--purple);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.icon-btn:hover {
    border-color: var(--purple);
    background: var(--purple-soft);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(236, 232, 245, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(43, 27, 98, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    color: var(--text);
}

.brand:hover {
    text-decoration: none;
}

.brand img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-word {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--purple);
}

.brand-word span {
    color: #8fd400;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
}

.header-menus {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    gap: 1rem;
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem;
    list-style: none;
}

.main-nav a,
.drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.7rem;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.main-nav a svg,
.drop-toggle svg {
    width: 10px;
    height: 8px;
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.drop-toggle:hover,
.drop-toggle.active,
.has-dropdown.open .drop-toggle {
    color: var(--purple);
    text-decoration: none;
}

.nav-new {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    padding: 0.08rem 0.4rem;
    border-radius: 999px;
    background: var(--lime);
    color: var(--purple-navy);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.main-nav > ul > li > a.active::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.08rem;
    height: 2px;
    background: var(--purple);
    border-radius: 2px;
}

.has-dropdown {
    position: relative;
}

.has-dropdown.open .drop-toggle svg {
    transform: rotate(180deg);
}

.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.45rem;
    display: none;
    list-style: none;
    z-index: 20;
}

.has-dropdown.open > .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-size: 0.86rem;
}

.dropdown a:hover {
    background: var(--purple-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.header-search {
    position: relative;
}

.search-popover {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    gap: 0.4rem;
    z-index: 20;
}

.search-popover.open,
.header-search:focus-within .search-popover {
    display: flex;
}

.search-popover input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    font-size: 0.85rem;
    outline: none;
}

.search-popover button {
    border: 0;
    background: var(--purple);
    color: var(--white);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

.site-main {
    flex: 1;
}

.home-page .site-main {
    padding: 0;
}

.page-section {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 3rem 0;
}

.page-section h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-section p {
    color: var(--muted);
    max-width: 65ch;
}

.privacy-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(98, 54, 255, 0.06), transparent 28%),
        radial-gradient(circle at 100% 18%, rgba(193, 255, 82, 0.1), transparent 24%),
        #fcfbff;
}

.privacy-page .page-hero {
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.12), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(193, 255, 82, 0.14), transparent 30%),
        transparent;
}

.privacy-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.privacy-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.2rem 2rem;
    align-items: center;
}

.privacy-hero-copy p {
    max-width: 54ch;
}

.privacy-page .page-hero .privacy-updated {
    display: inline-block;
    max-width: none;
    margin-top: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--purple-soft);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 600;
}

.privacy-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    margin-top: 1.1rem;
}

.privacy-highlights li {
    background: var(--white);
    border: 1px solid rgba(98, 54, 255, 0.12);
    color: var(--purple-navy);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.privacy-hero-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    border: 1px solid rgba(236, 232, 245, 0.95);
    border-radius: 26px;
    padding: 1.35rem 1.25rem 1.2rem;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 14px 32px rgba(43, 27, 98, 0.07);
}

.privacy-hero-card h2 {
    color: var(--purple-navy);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.privacy-hero-card .contact-points {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.privacy-glance,
.privacy-contact {
    padding: 0 0 3.2rem;
}

.privacy-page .tools-why-card .value-icon {
    background: linear-gradient(180deg, #f7f3ff, #efe8ff);
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.08);
}

.legal-doc {
    padding: 0 0 3.2rem;
}

.legal-doc .section-head {
    margin-bottom: 1.15rem;
}

.legal-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-toc a {
    background: var(--white);
    border: 1px solid rgba(236, 232, 245, 0.95);
    color: var(--purple-navy);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.legal-toc a:hover {
    text-decoration: none;
    background: var(--purple-soft);
    border-color: rgba(98, 54, 255, 0.22);
    color: var(--purple);
}

.legal-doc article {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 5.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    border: 1px solid rgba(236, 232, 245, 0.95);
    border-radius: 24px;
    padding: 1.45rem 1.4rem 1.35rem 1.45rem;
    margin-bottom: 1rem;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 14px 32px rgba(43, 27, 98, 0.07);
}

.legal-doc article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, var(--lime), #8fd400);
}

.legal-doc h2 {
    color: var(--purple-navy);
    font-size: 1.18rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

.legal-doc p,
.legal-doc li {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.legal-doc p + p,
.legal-doc ul {
    margin-top: 0.75rem;
}

.legal-doc ul {
    list-style: none;
    padding: 0;
}

.legal-doc li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.35rem;
}

.legal-doc li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
}

.legal-doc a {
    font-weight: 600;
}

.privacy-contact {
    scroll-margin-top: 5.5rem;
}

.privacy-page .cta {
    padding: 0 0 3.2rem;
    background: transparent;
}

@media (max-width: 900px) {
    .privacy-hero-inner {
        grid-template-columns: 1fr;
    }

    .privacy-hero-copy p {
        max-width: 72ch;
    }
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.1), transparent 32%),
        radial-gradient(circle at 8% 80%, rgba(193, 255, 82, 0.12), transparent 28%),
        #ffffff;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem 2rem;
    align-items: center;
    padding: 1.4rem 0 1.6rem;
}

.hero-copy h1 {
    font-size: clamp(1.75rem, 3.4vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--purple-navy);
    margin-bottom: 0.55rem;
    animation: fadeUp 0.7s ease both;
}

.hero-copy h1 span {
    color: var(--lime-text);
    display: inline-block;
    animation: popIn 0.7s 0.25s ease both;
}

.hero-copy > p {
    color: var(--muted);
    max-width: 44ch;
    margin-bottom: 0.9rem;
    animation: fadeUp 0.7s 0.12s ease both;
}

.hero-search {
    display: flex;
    align-items: center;
    width: min(100%, 520px);
    background: var(--white);
    border-radius: 999px;
    padding: 0.28rem 0.28rem 0.28rem 1.1rem;
    box-shadow: 0 10px 30px rgba(28, 11, 74, 0.1);
    border: 1px solid transparent;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    animation: fadeUp 0.7s 0.22s ease both;
}

.hero-search:focus-within {
    border-color: rgba(98, 54, 255, 0.35);
    box-shadow: 0 12px 32px rgba(98, 54, 255, 0.18);
    transform: translateY(-1px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text);
}

.hero-search button {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.2s ease;
}

.hero-search button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.hero-search button:hover {
    background: var(--purple-hover);
    transform: scale(1.08);
}

.hero-search button:hover svg {
    transform: rotate(-12deg) scale(1.05);
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.2rem;
    list-style: none;
    margin-top: 1rem;
    width: min(100%, 480px);
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    animation: fadeUp 0.6s ease both;
}

.hero-points li:nth-child(1) { animation-delay: 0.32s; }
.hero-points li:nth-child(2) { animation-delay: 0.4s; }
.hero-points li:nth-child(3) { animation-delay: 0.48s; }
.hero-points li:nth-child(4) { animation-delay: 0.56s; }

.point-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-points li:hover .point-icon {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.28);
}

.point-icon svg {
    width: 16px;
    height: 16px;
}

.hero-points strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
}

.hero-points small {
    color: var(--muted);
    font-size: 0.7rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s 0.2s ease both;
}

.hero-visual::after {
    content: "";
    position: absolute;
    width: 62%;
    height: 62%;
    right: 8%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(98, 54, 255, 0.22), transparent 70%);
    filter: blur(18px);
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-visual:hover::after {
    opacity: 1;
    transform: scale(1.06);
}

.hero-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 118%;
    max-width: 760px;
    max-height: 390px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.35s ease;
}

.hero-visual img:hover {
    transform: translateY(-8px) scale(1.03);
}

.hero-visual img.is-bounce {
    animation: imgBounce 0.7s ease;
}

/* Categories */
.categories {
    padding: 3.2rem 0 2.2rem;
    background: var(--white);
}

.section-head h2,
.how-card h2,
.about-copy h2 {
    font-size: 1.65rem;
    color: var(--purple-navy);
    display: inline-block;
}

.section-head h2::after,
.how-card h2::after,
.about-copy h2::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    background: var(--lime);
    border-radius: 4px;
    margin-top: 0.35rem;
}

.cat-wrap {
    position: relative;
    margin-top: 1.5rem;
}

.cat-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.5rem 3rem 1rem 0.15rem;
}

.cat-track::-webkit-scrollbar {
    display: none;
}

.cat-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
    color: var(--text);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cat-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    border-color: #d9cff8;
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.14);
}

.cat-card:hover .cat-icon {
    transform: scale(1.08);
}

.cat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cat-icon svg {
    width: 22px;
    height: 22px;
}

.cat-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cat-card strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.25;
}

.cat-card small {
    color: var(--muted);
}

.cat-next {
    position: absolute;
    right: 0;
    top: 38%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(91, 53, 229, 0.28);
    transition: transform 0.25s ease, background 0.2s ease;
}

.cat-next svg {
    width: 20px;
    height: 20px;
}

.cat-next:hover {
    background: var(--purple-hover);
    transform: scale(1.08);
}

/* Why + How */
.info-split {
    padding: 1rem 0 3.2rem;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: stretch;
}

.why-card {
    background: linear-gradient(180deg, #4c1d95 0%, #2b1b62 100%);
    color: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
}

.why-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.why-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0.9rem;
    list-style: none;
}

.why-card li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    min-width: 0;
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 17px;
    height: 17px;
}

.why-card strong {
    display: block;
    font-size: 0.9rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.how-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 1.8rem 1.4rem;
}

.how-card h2 {
    margin-bottom: 1.5rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    list-style: none;
}

.how-steps li {
    position: relative;
    text-align: center;
    padding: 0 0.2rem;
}

.how-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 68%;
    width: 64%;
    border-top: 2px dashed #d5ccec;
}

.step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 0.65rem;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-num {
    position: absolute;
    top: 42px;
    left: calc(50% - 34px);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--purple-navy);
    font-size: 0.7rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.how-steps strong {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.15rem;
}

.how-steps p {
    color: var(--muted);
    font-size: 0.74rem;
}

/* About */
.about {
    padding: 1rem 0 3.2rem;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.2rem;
    align-items: center;
}

.about-copy h2 {
    margin-bottom: 1rem;
}

.about-copy p {
    color: var(--muted);
    max-width: 52ch;
    margin-bottom: 0.85rem;
}

.about-copy .btn {
    margin-top: 0.6rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
}

.about-stats li {
    background: var(--purple-soft);
    border-radius: 18px;
    padding: 1.2rem 1rem;
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 1.55rem;
    color: var(--purple);
    line-height: 1.15;
}

.about-stats span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

/* CTA */
.cta {
    padding: 0 0 3.2rem;
    background: var(--white);
}

.cta-banner {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background: linear-gradient(90deg, #2b1b62, #6236ff);
    border-radius: 28px;
    padding: 1.3rem 1.5rem;
    color: var(--white);
}

.cta-rocket {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--purple-navy);
    display: grid;
    place-items: center;
}

.cta-rocket svg {
    width: 32px;
    height: 32px;
}

.cta-copy {
    flex: 1;
    min-width: 0;
}

.cta-copy h2 {
    font-size: 1.35rem;
    margin-bottom: 0.15rem;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-banner .btn-lime {
    flex-shrink: 0;
    color: var(--purple-navy);
    background: var(--lime);
    white-space: nowrap;
    overflow: visible;
}

.cta-banner .btn-lime:hover {
    color: var(--purple-navy);
}

/* Footer */
.site-footer {
    margin-top: auto;
    background: linear-gradient(180deg, #2b1b62 0%, #1c0b4a 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 2.6rem 0 1.2rem;
}

.site-footer .brand {
    color: var(--white);
}

.site-footer .brand-word {
    color: var(--white);
}

.site-footer .brand-word span {
    color: var(--lime);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr));
    gap: 2rem 1.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
    margin-top: 0.85rem;
    max-width: 34ch;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col h3 {
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--lime);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.15rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.58);
}

/* About page */
.page-hero {
    padding: 2.4rem 0 2.2rem;
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.12), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(193, 255, 82, 0.14), transparent 30%),
        #ffffff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--purple);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.15;
    color: var(--purple-navy);
    margin-bottom: 0.7rem;
}

.page-hero h1 span {
    color: var(--purple);
}

.page-hero p {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.02rem;
}

.page-hero .btn {
    margin-top: 1.1rem;
    margin-right: 0.55rem;
}

.about-page .page-hero p {
    max-width: 54ch;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem 2rem;
    align-items: center;
}

.about-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-visual img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-page .page-hero p {
        max-width: 72ch;
    }

    .about-hero-visual img {
        max-width: 420px;
        margin: 0 auto;
    }
}

.about-story {
    padding: 1.2rem 0 3rem;
}

.about-mission,
.about-values,
.about-offer,
.about-block,
.why-choose,
.explore-tools,
.faq {
    padding: 0 0 3.2rem;
}

.about-block p {
    color: var(--muted);
    max-width: 72ch;
    margin-top: 1rem;
}

.about-block p + p {
    margin-top: 0.85rem;
}

.about-suggest {
    background: var(--purple-soft);
    border-radius: 24px;
    padding: 1.6rem 1.5rem 1.7rem;
}

.about-suggest h2 {
    color: var(--purple-navy);
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.about-suggest p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.value-grid.about-diff {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.value-grid.about-diff li {
    flex: 1 1 260px;
    max-width: 340px;
}

.contact-wrap {
    padding: 0.4rem 0 3.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 1.25rem;
    align-items: start;
}

.contact-mail-card,
.contact-points {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    border: 1px solid rgba(236, 232, 245, 0.95);
    border-radius: 26px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 14px 32px rgba(43, 27, 98, 0.07);
}

.contact-mail-card {
    padding: 1.7rem 1.55rem 1.8rem;
}

.contact-mail-card h2 {
    color: var(--purple-navy);
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem;
}

.contact-mail-card > p {
    color: var(--muted);
    margin: 0 0 1.15rem;
}

.contact-mail-card .btn {
    margin: 0 0 1rem;
}

.contact-side {
    display: grid;
    gap: 1rem;
}

.contact-mail-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7f3ff, #ece4ff);
    color: var(--purple);
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.1);
}

.contact-mail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-email {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 0 0 0.95rem;
    padding: 0.7rem 0.95rem;
    border-radius: 14px;
    background: var(--purple-soft);
    color: var(--purple);
    font-size: 0.98rem;
    font-weight: 700;
    word-break: break-all;
}

.contact-email:hover {
    text-decoration: none;
    background: #ebe3ff;
}

.contact-time {
    margin-bottom: 0 !important;
}

.contact-points {
    list-style: none;
    padding: 0.55rem;
}

.contact-points li {
    display: grid;
    gap: 0.12rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
}

.contact-points li + li {
    border-top: 1px solid var(--border);
}

.contact-points strong {
    color: var(--purple-navy);
    font-size: 0.92rem;
}

.contact-points span {
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(98, 54, 255, 0.06), transparent 28%),
        radial-gradient(circle at 100% 18%, rgba(193, 255, 82, 0.1), transparent 24%),
        #fcfbff;
}

.contact-page .page-hero {
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.12), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(193, 255, 82, 0.14), transparent 30%),
        transparent;
}

.contact-page .page-hero p {
    max-width: 62ch;
}

.contact-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-page .cta {
    padding: 0 0 3.2rem;
    background: transparent;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tools-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(98, 54, 255, 0.06), transparent 28%),
        radial-gradient(circle at 100% 18%, rgba(193, 255, 82, 0.1), transparent 24%),
        #fcfbff;
}

.tools-page .page-hero {
    background:
        radial-gradient(circle at 88% 12%, rgba(98, 54, 255, 0.12), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(193, 255, 82, 0.14), transparent 30%),
        transparent;
}

.tools-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem 2rem;
    align-items: center;
}

.tools-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools-hero-visual img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

.tools-page .page-hero p {
    max-width: 54ch;
}

.tools-lead,
.tools-note {
    color: var(--muted);
    max-width: 76ch;
    margin-top: 0.85rem;
}

.tools-overview,
.tools-why {
    padding: 0 0 3.2rem;
}

.tools-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    margin-top: 1.5rem;
}

.tools-why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    border: 1px solid rgba(236, 232, 245, 0.95);
    border-radius: 24px;
    padding: 1.45rem 1.3rem 1.4rem;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 30px rgba(43, 27, 98, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tools-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(98, 54, 255, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        var(--shadow-hover);
}

.tools-page .tools-why-card .value-icon {
    background: linear-gradient(180deg, #f7f3ff, #efe8ff);
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.08);
}

.tools-why-card h3 {
    color: var(--purple-navy);
    font-size: 1.08rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

.tools-why-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.tools-cat-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    margin-top: 1.2rem;
}

.tools-cat-overview li {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--purple-navy);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.tools-page .cta-copy p {
    max-width: 62ch;
}

.tools-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tools-search {
    display: flex;
    align-items: center;
    width: min(100%, 520px);
    margin-top: 1.2rem;
    background: var(--white);
    border-radius: 999px;
    padding: 0.28rem 0.28rem 0.28rem 1.1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.tools-search:focus-within {
    border-color: rgba(98, 54, 255, 0.35);
    box-shadow: var(--shadow-hover);
}

.tools-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font: inherit;
    color: var(--text);
}

.tools-catalog {
    padding: 0.4rem 0 3.2rem;
}

.tools-catalog-head .section-head {
    margin: 0;
}

.tools-catalog .tools-lead {
    margin: 0.55rem 0 0;
    font-size: 0.92rem;
}

.tools-group {
    margin-top: 1.5rem;
}

.tools-group-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--purple-navy);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.95rem;
}

.tools-group-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(98, 54, 255, 0.12);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
    gap: 1.1rem;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(98, 54, 255, 0.1);
    border-radius: 24px;
    padding: 0 0 1.2rem;
    box-shadow: 0 12px 28px rgba(43, 27, 98, 0.06);
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tool-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: 0 18px 36px rgba(98, 54, 255, 0.12);
}

.tool-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #6236ff, #4f28e0);
    color: #ffffff;
    display: grid;
    place-items: center;
    margin: 1.3rem 1.2rem 0.95rem;
    box-shadow: 0 10px 18px rgba(98, 54, 255, 0.22);
}

.tool-card-icon svg {
    width: 22px;
    height: 22px;
}

.tool-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f3ff, #efe8ff);
    margin-bottom: 1rem;
}

.tool-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
}

.tool-card-title {
    color: var(--purple-navy);
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 1.2rem 0.45rem;
}

.tool-card-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 1.2rem 1.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.tool-card .btn {
    margin: auto 1.2rem 0;
}

.tools-soon-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem 1.6rem;
    align-items: center;
    margin-top: 1.4rem;
    padding: 1.1rem 1.25rem;
    border-radius: 22px;
    background: #f8f6fc;
    border: 1px dashed rgba(98, 54, 255, 0.18);
}

.tools-soon-copy h3 {
    color: var(--purple-navy);
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.tools-soon-copy p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0;
    max-width: none;
}

.tools-soon-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tools-soon-cats li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid rgba(98, 54, 255, 0.08);
    color: #6b6288;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.38rem 0.45rem 0.38rem 0.75rem;
    border-radius: 999px;
}

.tools-soon-cats span {
    background: rgba(43, 27, 98, 0.06);
    color: #8a82a3;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.18rem 0.42rem;
    border-radius: 999px;
}

.tools-empty {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 1.4rem;
}

.tools-empty h3 {
    color: var(--purple-navy);
    margin-bottom: 0.45rem;
}

.tools-empty p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.tools-page .cta {
    padding: 0 0 3.2rem;
    background: transparent;
}

@media (max-width: 1100px) {
    .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .tools-hero-inner {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        text-align: center;
    }

    .tools-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tools-page .page-hero p {
        max-width: 62ch;
        margin-left: auto;
        margin-right: auto;
    }

    .tools-search {
        width: 100%;
        max-width: 520px;
    }

    .tools-hero-visual {
        order: -1;
    }

    .tools-hero-visual img {
        max-width: 380px;
        margin: 0 auto;
    }

    .tools-why-layout {
        grid-template-columns: 1fr;
    }

    .tools-soon-panel {
        grid-template-columns: 1fr;
        padding: 1rem 1.05rem;
    }

    .tools-catalog-head .section-head,
    .tools-why .section-head {
        text-align: center;
    }

    .tools-catalog .tools-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .tools-group-title {
        justify-content: center;
    }

    .tools-group-title::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .tools-page .page-hero {
        padding-top: 1.4rem;
        padding-bottom: 1.6rem;
    }

    .tools-page .page-hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.15;
    }

    .tools-page .page-hero p {
        font-size: 0.95rem;
        max-width: none;
    }

    .tools-hero-visual img {
        max-width: 280px;
    }

    .tools-search {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
        border-radius: 18px;
        padding: 0.7rem;
        width: 100%;
        max-width: none;
    }

    .tools-search input {
        width: 100%;
        padding: 0.35rem 0.35rem 0.15rem;
        text-align: left;
    }

    .tools-search .btn {
        width: 100%;
        justify-content: center;
    }

    .tools-catalog,
    .tools-why,
    .tools-page .cta {
        padding-bottom: 2.2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .tool-card {
        border-radius: 20px;
        padding-bottom: 1rem;
    }

    .tool-card-media img {
        /* equal size via aspect-ratio on .tool-card-media */
        height: 100%;
        padding: 0;
        object-fit: cover;
    }

    .tool-card-title {
        font-size: 1.08rem;
        margin: 0 1rem 0.4rem;
    }

    .tool-card-desc {
        margin: 0 1rem 1rem;
        font-size: 0.88rem;
        -webkit-line-clamp: 4;
    }

    .tool-card .btn {
        margin: auto 1rem 0;
        width: calc(100% - 2rem);
        justify-content: center;
        text-align: center;
    }

    .tools-why-card {
        border-radius: 20px;
        padding: 1.2rem 1.05rem 1.15rem;
    }

    .tools-soon-panel {
        border-radius: 18px;
        padding: 0.95rem 0.9rem;
    }

    .tools-soon-cats {
        justify-content: flex-start;
    }

    .tools-soon-cats li {
        font-size: 0.76rem;
    }

    .tools-empty {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }

    .tools-page .cta-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        text-align: center;
        padding: 1.2rem 1rem;
    }

    .tools-page .cta-banner .btn-lime {
        width: 100%;
        justify-content: center;
    }

    .tools-page .cta-copy h2 {
        font-size: 1.25rem;
    }

    .tools-page .cta-copy p {
        max-width: none;
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .tools-page .page-hero h1 {
        font-size: 1.7rem;
    }

    .tool-card-media img {
        height: 100%;
        padding: 0;
        object-fit: cover;
    }

    .tools-soon-cats li {
        width: 100%;
        justify-content: space-between;
    }
}

.mission-grid,
.value-grid,
.offer-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.4rem 1.25rem;
    box-shadow: var(--shadow);
}

.mission-icon,
.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
}

.mission-icon svg,
.value-icon svg {
    width: 20px;
    height: 20px;
}

.mission-card h3 {
    font-size: 1.05rem;
    color: var(--purple-navy);
    margin-bottom: 0.4rem;
}

.mission-card p,
.value-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.value-grid li {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.3rem 1.15rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-grid li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.12);
}

.value-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--purple-navy);
}

.offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid .cat-card {
    min-width: 0;
}

.explore-intro,
.explore-note {
    color: var(--muted);
    max-width: 72ch;
    margin-top: 1rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.explore-grid article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.3rem 1.2rem;
    box-shadow: var(--shadow);
}

.explore-grid h3 {
    color: var(--purple-navy);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.explore-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.explore-note {
    margin-top: 1.3rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    list-style: none;
}

.choose-grid li {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.35rem 1.2rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-grid li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.12);
}

.choose-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--purple-navy);
}

.choose-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
    max-width: 820px;
    margin: 1.5rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--purple-navy);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--purple);
}

.faq-toggle {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--purple-soft);
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--purple);
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::before {
    width: 10px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 10px;
}

.faq-item[open] {
    border-color: #d9cff8;
}

.faq-item[open] .faq-toggle::after {
    opacity: 0;
}

.faq-item p {
    padding: 0 1.2rem 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Blog */
.blog-search {
    display: flex;
    align-items: center;
    max-width: 460px;
    margin-top: 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.28rem 0.28rem 0.28rem 1rem;
    box-shadow: var(--shadow);
}

.blog-search:focus-within {
    border-color: #d9cff8;
}

.blog-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 0.92rem;
    color: var(--text);
}

.blog-search button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.blog-search button svg {
    width: 18px;
    height: 18px;
}

.blog-listing,
.blog-related,
.article-body {
    padding: 0.4rem 0 3.2rem;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.4rem;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
}

.blog-filter:hover,
.blog-filter.is-active {
    text-decoration: none;
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.blog-featured,
.blog-card {
    display: grid;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured {
    grid-template-columns: 1.05fr 0.95fr;
    margin-bottom: 1.2rem;
}

.blog-featured:hover,
.blog-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(98, 54, 255, 0.12);
}

.blog-cover,
.article-cover {
    min-height: 210px;
    display: grid;
    place-items: center;
    color: var(--white);
}

.cover-pdf { background: linear-gradient(145deg, #6236ff, #2b1b62); }
.cover-image { background: linear-gradient(145deg, #7a4dff, #4c1d95); }
.cover-text { background: linear-gradient(145deg, #2b1b62, #6236ff); }
.cover-tips { background: linear-gradient(145deg, #4c1d95, #1c0b4a); }

.blog-cover-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--lime);
    display: grid;
    place-items: center;
}

.blog-cover-icon svg {
    width: 34px;
    height: 34px;
}

.blog-featured-copy,
.blog-card-copy {
    padding: 1.35rem 1.3rem 1.4rem;
}

.blog-tag {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: var(--purple-soft);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-new-badge {
    display: inline-flex;
    margin-right: 0.45rem;
    margin-bottom: 0.7rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: var(--lime);
    color: var(--purple-navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-new-blog {
    padding: 0 0 3.2rem;
}

.home-new-blog .blog-featured {
    margin-bottom: 0;
}

.blog-featured-copy h2,
.blog-card-copy h3,
.article-hero h1 {
    color: var(--purple-navy);
    line-height: 1.25;
    margin-bottom: 0.55rem;
}

.blog-featured-copy h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.blog-card-copy h3 {
    font-size: 1.05rem;
}

.blog-featured-copy p,
.blog-card-copy p,
.blog-empty p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 700;
}

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

.blog-card .blog-cover {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
}

.blog-card .blog-cover-photo {
    height: 100%;
    width: 100%;
}

.blog-card .blog-cover-photo img {
    display: block;
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    border: 1px dashed var(--border);
    border-radius: 22px;
}

.blog-empty h2 {
    color: var(--purple-navy);
    margin-bottom: 0.4rem;
}

.blog-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(98, 54, 255, 0.06), transparent 28%),
        radial-gradient(circle at 100% 18%, rgba(193, 255, 82, 0.1), transparent 24%),
        #fcfbff;
}

.blog-page .page-hero p {
    max-width: 54ch;
}

.blog-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem 2rem;
    align-items: center;
}

.blog-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-visual img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
}

@media (max-width: 900px) {
    .blog-hero-inner {
        grid-template-columns: 1fr;
    }

    .blog-page .page-hero p {
        max-width: 68ch;
    }

    .blog-hero-visual img {
        max-width: 420px;
        margin: 0 auto;
    }
}

.blog-intro,
.blog-page .about-values {
    padding: 0 0 3.2rem;
}

.blog-intro-copy {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.blog-intro-copy p {
    max-width: none;
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.blog-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.1rem;
    margin-top: 1.5rem;
}

.blog-hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(98, 54, 255, 0.1);
    border-radius: 24px;
    padding: 1.35rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-hub-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: var(--shadow-hover);
}

.blog-hub-card h3 {
    color: var(--purple-navy);
    font-size: 1.12rem;
    margin: 0 0 0.45rem;
}

.blog-hub-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.9rem;
    flex: 1;
}

.blog-listing .section-head {
    margin-top: 0.4rem;
    margin-bottom: 1.1rem;
}

.blog-view-all {
    margin-top: 1.4rem;
    text-align: center;
}

.blog-why-grid {
    margin-top: 1.5rem;
}

.article-hero {
    max-width: 760px;
}

.article-hero .blog-tag {
    margin-bottom: 0.85rem;
}

.article-hero h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.article-layout {
    display: grid;
    gap: 1.4rem;
    max-width: 760px;
}

.article-cover {
    border-radius: 24px;
    min-height: 220px;
}

.article-cover-photo,
.blog-cover-photo {
    padding: 0;
    overflow: hidden;
    background: var(--purple);
}

.article-cover-photo img,
.blog-cover-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.blog-featured .blog-cover-photo img {
    min-height: 210px;
}

.article-copy h2 {
    color: var(--purple-navy);
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 1.8rem 0 0.7rem;
}

.article-copy h3 {
    color: var(--purple-navy);
    font-size: 1.08rem;
    line-height: 1.35;
    margin: 1.25rem 0 0.45rem;
    letter-spacing: -0.02em;
}

.article-copy p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.article-copy ul {
    margin: 0 0 1rem 1.15rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.article-copy li {
    margin-bottom: 0.4rem;
}

.article-copy a {
    color: var(--purple);
    font-weight: 600;
}

.article-copy a.btn,
.article-copy a.btn-primary {
    color: var(--white);
}

.article-copy a.btn-lime {
    color: var(--purple-navy);
}

.article-copy .btn {
    margin-top: 0.6rem;
}

/* Article FAQ accordion */
.article-faq {
    margin: 1rem 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    padding-left: 0.15rem;
}

.article-faq::before {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 1.1rem;
    bottom: 1.1rem;
    width: 2px;
    background: linear-gradient(180deg, var(--lime), var(--purple));
    opacity: 0.45;
    border-radius: 2px;
}

.article-faq__item {
    position: relative;
    margin: 0;
    background: #fff;
    border: 1px solid rgba(98, 54, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
}

.article-faq__item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    list-style: none;
    color: var(--purple-navy);
}

.article-faq__item summary::-webkit-details-marker {
    display: none;
}

.article-faq__item summary:hover .article-faq__q {
    color: var(--purple);
}

.article-faq__index {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--purple-navy);
    background: var(--lime);
    z-index: 1;
}

.article-faq__item:nth-child(even) .article-faq__index {
    background: var(--purple);
    color: #fff;
}

.article-faq__q {
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.article-faq__icon {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    border: 1.5px solid rgba(98, 54, 255, 0.35);
    position: relative;
    flex-shrink: 0;
}

.article-faq__icon::before,
.article-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--purple);
    border-radius: 1px;
    transform: translate(-50%, -50%);
}

.article-faq__icon::before {
    width: 8px;
    height: 1.5px;
}

.article-faq__icon::after {
    width: 1.5px;
    height: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-faq__item[open] {
    border-color: rgba(98, 54, 255, 0.28);
    box-shadow: 0 10px 24px rgba(43, 27, 98, 0.08);
}

.article-faq__item[open] .article-faq__icon {
    background: var(--purple-soft);
    border-color: var(--purple);
}

.article-faq__item[open] .article-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.article-faq__item p {
    margin: 0;
    padding: 0 1rem 1rem 3.9rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Article closing CTA panel */
.article-cta {
    margin: 1.75rem 0 0.5rem;
    padding: 1.35rem 1.3rem 1.4rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(193, 255, 82, 0.22), transparent 42%),
        linear-gradient(300deg, rgba(98, 54, 255, 0.12), transparent 45%),
        #1f1248;
    color: #f4f0ff;
}

.article-cta::after {
    content: "";
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 255, 82, 0.35), transparent 70%);
    pointer-events: none;
}

.article-cta__kicker {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.article-cta p {
    color: rgba(244, 240, 255, 0.82);
    margin-bottom: 0.7rem;
}

.article-cta a:not(.btn) {
    color: var(--lime);
}

.article-cta__lead {
    color: #fff !important;
    font-weight: 600;
}

.article-cta .btn {
    margin-top: 0.35rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .article-faq::before {
        left: 1.15rem;
    }

    .article-faq__item summary {
        gap: 0.6rem;
        padding: 0.85rem 0.8rem;
    }

    .article-faq__index {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.68rem;
    }

    .article-faq__item p {
        padding-left: 1rem;
    }

    .article-cta {
        padding: 1.15rem 1rem 1.2rem;
    }
}

/* Article use-cases — stacked paper strips (not the flow strip) */
.merge-uses {
    list-style: none;
    margin: 1.1rem 0 1.5rem;
    padding: 0.15rem 0 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--purple-navy);
    font-size: 0.98rem;
}

.merge-uses li {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem 0.85rem 0.9rem;
    background: #fff;
    border: 1px solid rgba(43, 27, 98, 0.08);
    border-left: 4px solid var(--lime);
    box-shadow: 6px 6px 0 rgba(98, 54, 255, 0.08);
    transform: rotate(-0.4deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.merge-uses li:nth-child(even) {
    transform: rotate(0.45deg);
    border-left-color: var(--purple);
    box-shadow: -6px 6px 0 rgba(193, 255, 82, 0.22);
}

.merge-uses li:nth-child(3n) {
    transform: rotate(-0.65deg);
}

.merge-uses li:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 0 10px 22px rgba(43, 27, 98, 0.1);
}

.merge-uses__mark {
    flex: 0 0 auto;
    width: 1.55rem;
    height: 1.9rem;
    position: relative;
    border-radius: 3px 3px 2px 2px;
    background: linear-gradient(160deg, var(--purple-soft), #fff 70%);
    border: 1.5px solid rgba(98, 54, 255, 0.28);
    box-shadow: inset 0 -6px 0 rgba(98, 54, 255, 0.06);
}

.merge-uses__mark::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 9px 9px 0;
    border-color: transparent var(--lime) transparent transparent;
}

.merge-uses li:nth-child(even) .merge-uses__mark::before {
    border-color: transparent var(--purple) transparent transparent;
}

.merge-uses__mark::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: 11px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(43, 27, 98, 0.28) 0 4px,
        transparent 4px 7px
    );
    box-shadow: 0 4px 0 rgba(43, 27, 98, 0.16), 0 8px 0 rgba(43, 27, 98, 0.1);
}

.merge-uses li > span:last-child {
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: var(--purple-navy);
}

@media (max-width: 640px) {
    .merge-uses li,
    .merge-uses li:nth-child(even),
    .merge-uses li:nth-child(3n) {
        transform: none;
        box-shadow: 4px 4px 0 rgba(98, 54, 255, 0.08);
    }

    .merge-uses li:nth-child(even) {
        box-shadow: 4px 4px 0 rgba(193, 255, 82, 0.25);
    }
}

/* Article merge workflow strip */
.merge-flow {
    list-style: none;
    margin: 1.35rem 0 1.5rem;
    padding: 0.9rem 0.75rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(120% 90% at 0% 0%, rgba(193, 255, 82, 0.28), transparent 55%),
        radial-gradient(100% 80% at 100% 100%, rgba(98, 54, 255, 0.14), transparent 50%),
        linear-gradient(135deg, #f7f4ff 0%, #eef8e4 100%);
    border: 1px solid rgba(98, 54, 255, 0.12);
    overflow: hidden;
}

.merge-flow::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 42%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--purple) 0 10px,
        transparent 10px 18px
    );
    opacity: 0.28;
    pointer-events: none;
}

.merge-flow__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.55rem 0.35rem 0.4rem;
    animation: merge-flow-in 0.55s ease both;
}

.merge-flow__step:nth-child(1) { animation-delay: 0.05s; }
.merge-flow__step:nth-child(2) { animation-delay: 0.15s; }
.merge-flow__step:nth-child(3) { animation-delay: 0.25s; }
.merge-flow__step:nth-child(4) { animation-delay: 0.35s; }

.merge-flow__num {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--purple-navy);
    background: var(--lime);
    box-shadow:
        0 0 0 4px rgba(193, 255, 82, 0.35),
        0 8px 18px rgba(43, 27, 98, 0.12);
    transform: rotate(-6deg);
}

.merge-flow__step:nth-child(even) .merge-flow__num {
    transform: rotate(6deg);
    background: var(--purple);
    color: #fff;
    box-shadow:
        0 0 0 4px rgba(98, 54, 255, 0.18),
        0 8px 18px rgba(43, 27, 98, 0.16);
}

.merge-flow__label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--purple-navy);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

@keyframes merge-flow-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .merge-flow {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 0.5rem;
        padding: 1rem 0.7rem;
    }

    .merge-flow::before {
        display: none;
    }

    .merge-flow__step:nth-child(1) .merge-flow__num,
    .merge-flow__step:nth-child(2) .merge-flow__num,
    .merge-flow__step:nth-child(3) .merge-flow__num,
    .merge-flow__step:nth-child(4) .merge-flow__num {
        transform: none;
    }
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: flex;
    }

    .header-menus {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 4% 1.1rem;
        box-shadow: var(--shadow);
    }

    .header-menus.open {
        display: flex;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
    }

    .drop-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        padding-left: 0.8rem;
    }

    .has-dropdown.open > .dropdown {
        display: block;
    }

    .header-actions {
        flex-wrap: wrap;
        padding-top: 0.6rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

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

    .mission-grid,
    .value-grid,
    .choose-grid,
    .explore-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

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

    .how-steps li:not(:last-child)::after {
        width: 50%;
        left: 72%;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 1.2rem 0 1.4rem;
        gap: 1rem;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-visual img {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-copy h1 span,
    .page-hero h1 span {
        color: var(--lime-text);
    }

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

    .how-steps {
        grid-template-columns: 1fr 1fr;
        gap: 1.3rem 0.6rem;
    }

    .how-steps li:not(:last-child)::after {
        display: none;
    }

    .cta-banner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cta-copy {
        flex: 1 1 220px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .why-card ul {
        grid-template-columns: 1fr;
    }

    .mission-grid,
    .value-grid,
    .offer-grid,
    .choose-grid,
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .blog-search {
        max-width: 100%;
    }

    .blog-grid,
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .brand-word {
        font-size: 1.1rem;
    }

    .search-popover {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
}

/* Homepage premium polish */
.home-page {
    background:
        radial-gradient(circle at 0% 8%, rgba(98, 54, 255, 0.05), transparent 28%),
        radial-gradient(circle at 100% 40%, rgba(193, 255, 82, 0.08), transparent 24%),
        #fcfbff;
}

.home-page .hero {
    background:
        radial-gradient(circle at 92% 8%, rgba(98, 54, 255, 0.14), transparent 34%),
        radial-gradient(circle at 6% 86%, rgba(193, 255, 82, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.home-page .hero-inner {
    padding: 2.1rem 0 2.4rem;
    gap: 1.4rem 2.4rem;
}

.home-page .hero-copy .hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(98, 54, 255, 0.12);
    color: var(--purple);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    max-width: none;
    box-shadow: 0 8px 20px rgba(98, 54, 255, 0.08);
    animation: fadeUp 0.6s ease both;
}

.home-page .hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.045em;
    font-weight: 800;
}

.home-page .hero-copy > p:not(.hero-kicker) {
    max-width: 48ch;
    font-size: 1.02rem;
    line-height: 1.7;
}

.home-page .hero-search {
    box-shadow: 0 14px 40px rgba(43, 27, 98, 0.1);
    border: 1px solid rgba(98, 54, 255, 0.08);
}

.home-page .hero-search button {
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.28);
}

.home-page .point-icon {
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.2);
}

.home-page .categories,
.home-page .home-new-blog,
.home-page .why-choose,
.home-page .faq {
    background: transparent;
}

.home-page .about,
.home-page .info-split,
.home-page .explore-tools,
.home-page .cta {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.9));
}

.home-page .section-head h2,
.home-page .how-card h2,
.home-page .about-copy h2 {
    font-size: clamp(1.55rem, 2.4vw, 1.9rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

.home-page .section-head h2::after,
.home-page .how-card h2::after,
.home-page .about-copy h2::after {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), #8fd400);
}

.home-page .cat-card,
.home-page .choose-grid li,
.home-page .explore-grid article,
.home-page .faq-item,
.home-page .how-card {
    border: 1px solid rgba(236, 232, 245, 0.9);
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 30px rgba(43, 27, 98, 0.06);
}

.home-page .cat-card:hover,
.home-page .choose-grid li:hover,
.home-page .explore-grid article:hover,
.home-page .faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(98, 54, 255, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        var(--shadow-hover);
}

.home-page .explore-grid article {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-page .cat-icon,
.home-page .value-icon {
    background: linear-gradient(180deg, #f7f3ff, #efe8ff);
    box-shadow: 0 8px 16px rgba(98, 54, 255, 0.08);
}

.home-page .how-card {
    padding: 2rem 1.6rem 1.8rem;
    border-radius: 30px;
}

.home-page .step-icon {
    background: linear-gradient(180deg, #f7f3ff, #ece4ff);
    box-shadow: 0 10px 18px rgba(98, 54, 255, 0.1);
}

.home-page .about-stats li {
    background: linear-gradient(180deg, #ffffff, #f6f2ff);
    border: 1px solid rgba(98, 54, 255, 0.08);
    box-shadow: 0 10px 24px rgba(98, 54, 255, 0.07);
    border-radius: 20px;
    padding: 1.35rem 1rem;
}

.home-page .about-stats strong {
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.home-page .cta-banner {
    position: relative;
    overflow: hidden;
    padding: 1.6rem 1.8rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 18%, rgba(193, 255, 82, 0.18), transparent 28%),
        linear-gradient(105deg, #1c0b4a 0%, #2b1b62 42%, #6236ff 100%);
    box-shadow: 0 22px 48px rgba(43, 27, 98, 0.28);
}

.home-page .cta-rocket {
    box-shadow: 0 10px 24px rgba(193, 255, 82, 0.35);
}

.home-page .faq-item[open] {
    border-color: rgba(98, 54, 255, 0.22);
    box-shadow: 0 16px 36px rgba(98, 54, 255, 0.12);
}

.home-page .faq-item summary {
    font-size: 0.98rem;
}

.home-page .site-footer {
    box-shadow: 0 -18px 40px rgba(28, 11, 74, 0.08);
}

.home-page .section-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-page .hero-frame {
    position: relative;
    z-index: 1;
    padding: 0.7rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 24px 60px rgba(43, 27, 98, 0.14),
        0 0 0 1px rgba(98, 54, 255, 0.06);
    backdrop-filter: blur(10px);
}

.home-page .hero-frame img {
    width: 100%;
    max-width: none;
    max-height: 420px;
    border-radius: 22px;
}

.home-page .hero-points {
    width: min(100%, 520px);
    gap: 0.7rem;
}

.home-page .hero-points li {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(98, 54, 255, 0.08);
    border-radius: 16px;
    padding: 0.55rem 0.7rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(43, 27, 98, 0.05);
}

.home-page .choose-grid {
    counter-reset: choose;
}

.home-page .choose-grid li {
    position: relative;
    padding-top: 1.55rem;
    overflow: hidden;
}

.home-page .choose-grid li::before {
    counter-increment: choose;
    content: counter(choose, decimal-leading-zero);
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    color: rgba(98, 54, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-page .explore-grid article {
    position: relative;
    overflow: hidden;
    padding-top: 1.5rem;
}

.home-page .explore-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--lime));
}

.home-page .how-card .section-kicker {
    display: block;
}

.home-page .how-steps li {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(236, 232, 245, 0.95);
    border-radius: 20px;
    padding: 1rem 0.55rem 0.95rem;
    box-shadow: 0 10px 22px rgba(43, 27, 98, 0.05);
}

.home-page .how-steps li:not(:last-child)::after {
    top: 38px;
    opacity: 0.7;
}

.home-page .cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.1) 46%, transparent 68%);
    pointer-events: none;
}

.home-page .btn-lime {
    box-shadow: 0 10px 22px rgba(193, 255, 82, 0.28);
}

.home-page .faq-list {
    max-width: 860px;
}

.home-page .faq-item summary {
    padding: 1.15rem 1.3rem;
}

.home-page .faq-toggle {
    width: 26px;
    height: 26px;
    background: linear-gradient(180deg, #f7f3ff, #ece4ff);
}

.home-page .categories,
.home-page .home-new-blog,
.home-page .why-choose,
.home-page .about,
.home-page .explore-tools,
.home-page .info-split,
.home-page .faq {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
}

.reveal.is-visible {
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imgBounce {
    0% { transform: translateY(0) scale(1); }
    35% { transform: translateY(-14px) scale(1.04); }
    70% { transform: translateY(-4px) scale(1.015); }
    100% { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

body.popup-open {
    overflow: hidden;
}

.launch-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.launch-popup.is-open {
    display: flex !important;
}

.launch-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 11, 74, 0.55);
}

.launch-popup-card {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    background: #fff;
    border-radius: 28px;
    padding: 1.7rem 1.5rem 1.45rem;
    box-shadow: 0 24px 60px rgba(43, 27, 98, 0.28);
    animation: popIn 0.35s ease;
}

.launch-popup-close {
    position: absolute;
    top: 0.85rem;
    right: 0.9rem;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple-navy);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.launch-popup-close:hover {
    background: #ece4ff;
}

.launch-popup-card .section-kicker {
    margin-bottom: 0.45rem;
}

.launch-popup-card h2 {
    color: var(--purple-navy);
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.launch-popup-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.launch-popup-card p strong {
    color: var(--purple);
}

.launch-popup-tools {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.launch-popup-tools li {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(98, 54, 255, 0.05);
    border: 1px solid rgba(98, 54, 255, 0.1);
}

.launch-popup-tools a {
    color: var(--purple);
    text-decoration: none;
}

.launch-popup-tools a:hover {
    text-decoration: underline;
}

.launch-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
