@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #0f0f13;
    --bg2: #13131a;
    --bg3: #18181f;
    --card: #16161e;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.13);
    --text: #ffffff;
    --muted: #7a7a8c;
    --muted2: #3f3f52;
    --accent: #C417F1;
    --accent2: #0351C1;
    --grad: linear-gradient(90deg, #C417F1 0%, #0351C1 100%);
    --grad-btn: linear-gradient(100deg, #C417F1 0%, #0351C1 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 96px 0;
}

.divider {
    height: 1px;
    background: var(--border);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 23, 241, 0.1);
    border: 1px solid rgba(196, 23, 241, 0.25);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #d966ff;
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d966ff;
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.7);
    }
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    display: inline-block;
}

.section-title {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 900;
    line-height: 1.06;
    margin-bottom: 18px;
}

.audience-title {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 23px;
    margin-top: -10px;
    color: #dadada;
}

.section-sub {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .45);
    max-width: 520px;
}
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--grad-btn);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 22px 56px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    letter-spacing: -.01em;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 50px rgba(196, 23, 241, .28);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 60px rgba(196, 23, 241, .4);
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-lg {
    font-size: 19px;
    padding: 26px 68px;
}
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 50%, rgb(94 118 222 / 17%) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 75% 60%, rgba(3, 81, 193, .07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.max-watermark {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 750px;
    height: 750px;
    opacity: .03;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.max-watermark svg {
    width: 100%;
    height: 100%;
}
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    z-index: 0;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -160px;
    background: radial-gradient(circle, rgba(196, 23, 241, .1) 0%, transparent 70%);
}

.blob-2 {
    width: 600px;
    height: 600px;
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgb(193 3 29 / 32%) 0%, transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 100px 0 80px;
    min-height: 100vh;
}
.hero-left {}

.hero-title {
    font-size: clamp(48px, 5.8vw, 76px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -.04em;
    margin-bottom: 26px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-audience {
    display: flex;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.audience-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.tag-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--grad-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tag-icon svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.photo-wrap {
    position: relative;
    width: 100%;
    max-width: 505px;
}
.ring {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(196, 23, 241, .18) 0%, transparent 65%);
    z-index: 0;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(196, 23, 241, .14);
    z-index: 0;
}

.ring-3 {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(196, 23, 241, .07);
    z-index: 0;
}
.deco-cross {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 0;
    opacity: .5;
}

.photo-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .3));
}
.float-card {
    position: absolute;
    z-index: 2;
    background: rgba(18, 18, 26, .82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 16px 22px;
    animation: floaty 4s ease-in-out infinite;
}

.float-card-b {
    animation-delay: -2s;
}

@keyframes floaty {

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

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

.fc-num {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.04em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fc-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 3px;
    white-space: nowrap;
}

.fc-top {
    top: 10%;
    right: -20px;
}

.fc-bottom {
    bottom: 26%;
    left: -26px;
}
.pain-section {
    background: var(--bg2);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px;
}

.pain-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
}

.pain-card:hover {
    border-color: rgba(196, 23, 241, .3);
    transform: translateY(-4px);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0;
    transition: opacity .25s;
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(196, 23, 241, .08);
    border: 1px solid rgba(196, 23, 241, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1;
}

.pain-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.pain-card p {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .4);
}
.who-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    transition: border-color .2s;
}

.who-item:hover {
    border-color: rgba(196, 23, 241, .25);
}

.who-num {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .05em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 2px;
    flex-shrink: 0;
    width: 22px;
}

.who-text {
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255, 255, 255, .75);
}

.get-box {
    background: linear-gradient(145deg, rgba(196, 23, 241, .07) 0%, rgba(3, 81, 193, .05) 100%);
    border: 1px solid rgba(196, 23, 241, .18);
    border-radius: 24px;
    padding: 44px;
}

.get-box h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 6px;
}

.get-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.get-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.get-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

.get-check {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(196, 23, 241, .12);
    border: 1px solid rgba(196, 23, 241, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.get-check svg {
    width: 12px;
    height: 12px;
    stroke: #d966ff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.topics-section {
    background: var(--bg2);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 52px;
}

.topic-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    transition: border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    border-color: rgba(196, 23, 241, .25);
    transform: translateY(-3px);
}

.topic-icon {
    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1;
    display: block;
}

.topic-card h4 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 6px;
}

.topic-card p {
    font-size: 15px;
    line-height: 1.3;
    color: rgba(255, 255, 255, .38);
}

.topic-bg-num {
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 102px;
    font-weight: 500;
    letter-spacing: -.05em;
    color: rgb(154 154 154 / 1%);
    line-height: 1;
    user-select: none;
}
.final-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.final-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-inner .section-title {
    max-width: 680px;
}

.final-inner .section-sub {
    text-align: center;
    margin: 0 auto 48px;
}
footer {
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.footer-inner {
    padding: 36px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 12px;
    color: var(--muted2);
    line-height: 1.8;
}

.footer-right {
    font-size: 12px;
    color: var(--muted2);
    text-align: right;
    line-height: 1.6;
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .5s ease, transform .5s ease;
}

.word.show {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:1024px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 70px 0 60px;
        gap: 48px;
        min-height: auto;
    }

    .hero-right {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .fc-top {
        right: -6px;
    }

    .fc-bottom {
        left: -6px;
    }

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

    .who-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .section {
        padding: 68px 0;
    }

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

    .footer-right {
        text-align: left;
    }
}

@media(max-width:640px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 0;
    }

    .hero-desc,
    .section-sub {
        font-size: 16px;
    }

    .who-text {
        font-size: 15px;
    }

    .audience-title {
        font-size: 19px;
    }

    .section-title {
        font-size: 32px;
    }

    .get-item {
        font-size: 15px;
        line-height: 1.2;
    }

    .get-items {
        gap: 20px;
    }

    .pain-card h3 {
        font-size: 19px;
        margin-bottom: 14px;
        width: 170px;
        line-height: 1.3;
    }

    .photo-wrap {
        width: 85%;
    }

    .hero-grid {
        padding: 20px 0 60px;
        gap: 0;
        min-height: auto;
    }

    .btn {
        padding: 20px 36px;
        font-size: 16px;
        width: 100%;
    }

    .btn-lg {
        padding: 22px 40px;
        font-size: 17px;
    }

    .float-card {
        display: none;
    }

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

    .get-box {
        padding: 28px 22px;
    }

    .max-watermark {
        right: 0;
        top: 16%;
        width: 280px;
        height: 280px;
        left: 0;
        margin: 0 auto;
    }
}