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

:root {
    --bg: #f8f9ff;
    --text: #161c34;
    --muted: #626a88;
    --line: rgba(121, 136, 186, 0.26);
    --accent: #8c52ff;
    --accent-2: #bb76ff;
    --shadow: 0 18px 44px rgba(20, 28, 52, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(66, 86, 144, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 86, 144, 0.1) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.34;
    pointer-events: none;
    z-index: 0;
}

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

.navbar {
    width: 100%;
    margin: 0;
    padding: 18px max(16px, calc((100% - 1180px) / 2));
    border-radius: 0;
    border: none;
    background: linear-gradient(90deg, #20335f 0%, #3f247c 52%, #7c118e 100%);
    box-shadow: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.04rem;
    color: #ffffff;
}

.brand-text small {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
    max-width: 620px;
    gap: 28px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(238, 231, 255, 0.82);
    opacity: 0.95;
    transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.nav-socials {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(241, 233, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #f8f2ff;
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(241, 233, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.2s, color 0.2s, background 0.2s;
}

.nav-socials a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 16px 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.page {
    width: 100%;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
}

.card {
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
    color: var(--text);
}

.hero {
    width: 100%;
    min-height: 540px;
    padding: 104px max(16px, calc((100% - 1180px) / 2)) 118px;
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(360px, 1fr);
    gap: 54px;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 0;
    background:
        linear-gradient(105deg, #321b73 0%, #4b137f 48%, #94009b 100%);
    color: #f8f2ff;
    box-shadow: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 24%) 0 74px / 210px 48px no-repeat,
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07)) right 48px bottom 76px / 260px 60px no-repeat,
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 70%) 20% 20% / 92px 92px no-repeat;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 94px;
    top: 126px;
    width: 120px;
    height: 82px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.72) 2px, transparent 3px);
    background-size: 18px 18px;
    opacity: 0.72;
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(241, 233, 255, 0.36);
    background: rgba(255, 255, 255, 0.16);
    color: rgba(250, 246, 255, 0.96);
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-size: clamp(2.65rem, 5.4vw, 4.2rem);
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(46, 20, 120, 0.32);
}

.hero-subtitle {
    margin-top: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 16ch;
    color: #e7d7ff;
}

.lead {
    margin-top: 14px;
    color: rgba(238, 231, 255, 0.92);
    font-size: 1rem;
    max-width: 47ch;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    padding: 15px 22px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.94rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.primary-btn {
    background: #ffffff;
    color: #4d2abc;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 34px rgba(23, 10, 72, 0.28);
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.82);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(23, 10, 72, 0.18);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(23, 10, 72, 0.28);
}

.hero-media {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 145, 255, 0.58) 0%, rgba(198, 145, 255, 0.18) 48%, rgba(198, 145, 255, 0) 80%);
    filter: blur(8px);
}

.hero-render {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(12, 10, 45, 0.5));
    animation: float 5s ease-in-out infinite;
}

.hero-mini-card {
    display: none;
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.hero-mini-card span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.image-slot {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 150px;
    border-radius: 18px;
    border: 1px dashed rgba(241, 233, 255, 0.58);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 10px, rgba(255, 255, 255, 0.02) 10px 20px);
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
}

.image-slot span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.image-slot small {
    display: block;
    margin-top: 8px;
    max-width: 24ch;
    color: rgba(238, 231, 255, 0.82);
    line-height: 1.35;
}

.large-slot {
    min-height: 360px;
    max-width: 420px;
}

.quick-grid {
    width: min(1180px, calc(100% - 32px));
    margin: -72px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    position: relative;
    z-index: 3;
}

.quick-card {
    border: none;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(33, 16, 78, 0.12);
    padding: 26px 28px;
    backdrop-filter: blur(10px);
}

.quick-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #8c52ff, #bb76ff);
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(140, 82, 255, 0.24);
}

.quick-card h2,
.member-grid h3 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

.quick-card h2 {
    font-size: 1.24rem;
    margin-bottom: 8px;
    color: #1f2850;
}

.quick-card p {
    color: var(--muted);
    line-height: 1.55;
}

.community-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 10px;
    display: grid;
    gap: 34px;
}

.section-copy {
    display: grid;
    gap: 0;
    justify-items: start;
}

.section-copy.centered {
    justify-items: center;
    text-align: center;
}

.section-copy h2 {
    position: relative;
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #1f2850;
    max-width: 17ch;
}

.section-copy.centered h2 {
    max-width: none;
}

.section-copy h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: min(620px, calc(100vw - 64px));
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(102, 63, 226, 0.95) 0%, rgba(143, 93, 255, 0.45) 68%, rgba(143, 93, 255, 0) 100%);
}

.section-copy p:not(.eyebrow) {
    margin-top: 26px;
    color: var(--muted);
    line-height: 1.62;
    max-width: 76ch;
}

.section-copy.centered p:not(.eyebrow) {
    max-width: 68ch;
}

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

.member-grid article {
    border: 1px solid rgba(137, 112, 216, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 255, 0.9));
    box-shadow: 0 16px 38px rgba(33, 16, 78, 0.07);
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.member-grid article:hover {
    border-color: rgba(140, 82, 255, 0.55);
    box-shadow: 0 18px 38px rgba(33, 16, 78, 0.12);
    transform: translateY(-2px);
}

.member-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: rgba(140, 82, 255, 0.1);
    border: 1px solid rgba(140, 82, 255, 0.22);
    color: #5a33d1;
    font-size: 0.78rem;
    font-weight: 700;
}

.member-grid h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
    color: #1f2850;
}

.member-grid p {
    color: var(--muted);
    line-height: 1.55;
}

.member-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-width: 116px;
    min-height: 38px;
    border-radius: 4px;
    background: rgba(140, 82, 255, 0.1);
    border: 1px solid rgba(140, 82, 255, 0.22);
    color: #4d2abc;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.member-grid a:hover {
    background: rgba(140, 82, 255, 0.16);
    transform: translateY(-1px);
}

.benefits-section {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    padding: 78px max(16px, calc((100% - 1180px) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 48px;
    align-items: center;
    background: linear-gradient(105deg, #94009b 0%, #541482 44%, #1d2d68 100%);
    color: #ffffff;
}

.benefits-section::before,
.benefits-section::after {
    content: "";
    position: absolute;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.benefits-section::before {
    width: 150px;
    height: 150px;
    left: 12%;
    bottom: 32px;
}

.benefits-section::after {
    width: 92px;
    height: 92px;
    right: 7%;
    top: 42px;
}

.benefits-copy,
.benefits-panel {
    position: relative;
    z-index: 1;
}

.benefits-copy h2 {
    max-width: 17ch;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.benefits-copy p {
    margin-top: 18px;
    max-width: 62ch;
    color: rgba(248, 242, 255, 0.86);
    line-height: 1.65;
}

.benefits-panel {
    border-radius: 8px;
    background: rgba(148, 0, 155, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 26px;
    display: grid;
    gap: 12px;
}

.benefits-panel article {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.benefits-panel span {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
}

.workflow-section,
.faq-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 10px;
    display: grid;
    gap: 34px;
}

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

.workflow-grid article {
    border-radius: 8px;
    border: 1px solid rgba(137, 112, 216, 0.16);
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(33, 16, 78, 0.07);
    padding: 26px;
}

.workflow-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(140, 82, 255, 0.1);
    color: #5a33d1;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
}

.workflow-grid h3,
.faq-grid h3 {
    font-family: "Space Grotesk", sans-serif;
    color: #1f2850;
}

.workflow-grid h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.workflow-grid p {
    color: var(--muted);
    line-height: 1.58;
}

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

.faq-grid details {
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(33, 16, 78, 0.05);
    overflow: hidden;
}

.faq-grid summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    color: #1f2850;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-grid summary::before {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid #a400d6;
    color: #a400d6;
    font-weight: 800;
    line-height: 1;
}

.faq-grid details[open] summary::before {
    content: "-";
}

.faq-grid details p {
    padding: 0 26px 22px 60px;
    color: var(--muted);
    line-height: 1.58;
}

.site-footer {
    width: 100%;
    margin: 12px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: linear-gradient(180deg, #203961 0%, #172b4e 100%);
    box-shadow: 0 -18px 44px rgba(33, 16, 78, 0.08);
    padding: 34px max(16px, calc((100% - 1180px) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    color: #f8f2ff;
}

.inner-page {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 46px;
    padding-bottom: 54px;
}

.inner-hero {
    min-height: 230px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 58px 16px;
    background: linear-gradient(105deg, #321b73 0%, #4b137f 48%, #94009b 100%);
    color: #ffffff;
}

.inner-hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.45rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.inner-hero p {
    margin-top: 14px;
    max-width: 62ch;
    color: rgba(248, 242, 255, 0.9);
    line-height: 1.6;
}

.inner-section,
.inner-split {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.inner-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: center;
}

.inner-copy h2,
.inner-section h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #1f2850;
}

.inner-copy p,
.inner-section > p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 72ch;
}

.inner-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.inner-primary,
.inner-secondary,
.card-btn,
.tool-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
}

.inner-primary,
.card-btn,
.tool-btn {
    background: #8c52ff;
    color: #ffffff;
}

.inner-secondary {
    border: 1px solid rgba(140, 82, 255, 0.38);
    color: #4d2abc;
}

.inner-art {
    min-height: 320px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 35%, rgba(140, 82, 255, 0.18), transparent 36%),
        linear-gradient(180deg, #ffffff, #f5f7ff);
    box-shadow: 0 18px 44px rgba(33, 16, 78, 0.08);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.inner-art img {
    max-width: min(90%, 430px);
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(33, 16, 78, 0.18));
}

.content-grid,
.tool-grid,
.contact-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tool-grid.cols-2,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.tool-card,
.contact-card,
.form-wrap {
    border: 1px solid rgba(137, 112, 216, 0.16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(33, 16, 78, 0.07);
    padding: 24px;
}

.info-card span,
.tool-tag,
.chip {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(140, 82, 255, 0.1);
    color: #5a33d1;
    font-size: 0.78rem;
    font-weight: 800;
}

.info-card h3,
.tool-card h3,
.contact-card h3,
.form-wrap h2 {
    font-family: "Space Grotesk", sans-serif;
    color: #1f2850;
    margin-bottom: 10px;
}

.info-card p,
.tool-card p,
.contact-card p,
.form-wrap p {
    color: var(--muted);
    line-height: 1.58;
}

.tool-card,
.contact-card {
    display: grid;
    gap: 10px;
}

.contact-form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #1f2850;
    font-weight: 700;
}

.contact-form .full,
.submit-btn {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(137, 112, 216, 0.24);
    border-radius: 4px;
    padding: 12px 13px;
    color: var(--text);
    background: #f9faff;
}

.submit-btn {
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    background: #8c52ff;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.footer-brand,
.footer-links,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 48%);
    pointer-events: none;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.footer-logo span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
}

.footer-logo small {
    margin-top: 3px;
    color: rgba(238, 231, 255, 0.78);
    font-size: 0.78rem;
}

.footer-brand p {
    max-width: 58ch;
    color: rgba(238, 231, 255, 0.86);
    line-height: 1.6;
}

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

.footer-links h2 {
    margin-bottom: 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.footer-links a {
    display: block;
    width: fit-content;
    margin-top: 8px;
    color: rgba(238, 231, 255, 0.82);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(241, 233, 255, 0.22);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(238, 231, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 600;
}

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

    .hero {
        padding: 54px 24px 116px;
        min-height: 0;
        gap: 24px;
    }

    .hero-media {
        min-height: 260px;
    }

    .hero-render {
        width: min(100%, 320px);
        max-height: 380px;
    }

    .hero::after {
        right: 28px;
        top: auto;
        bottom: 210px;
        opacity: 0.44;
    }

    .hero-mini-card {
        right: auto;
        left: 50%;
        bottom: 18px;
        width: min(240px, 90%);
        transform: translateX(-50%);
    }

    .quick-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: -82px;
    }

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

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

    .benefits-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

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

    .inner-split,
    .content-grid,
    .tool-grid,
    .tool-grid.cols-2,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .navbar {
        grid-template-columns: auto auto;
        padding: 12px 16px;
    }

    .nav-logo img {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 0.9rem;
    }

    .brand-text small {
        font-size: 0.68rem;
    }

    .nav-socials a {
        width: 24px;
        height: 24px;
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 0.76rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 14vw, 3.7rem);
    }

    .hero-subtitle {
        max-width: none;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        min-width: 0;
    }

    .community-section {
        padding: 8px 0 0;
    }

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

    .benefits-panel {
        padding: 20px;
    }

    .member-grid article,
    .workflow-grid article {
        padding: 22px;
    }

    .footer-links,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

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

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