/* ==========================================================================
   NIKKNOK — For Creators page
   Reuses the --nk-* design tokens defined in nikknok-home.css.
   Include nikknok-home.css BEFORE this file for variables + base reset.
   ========================================================================== */

.nkc-page {
    background: var(--nk-bg);
    color: var(--nk-text);
    font-family: var(--nk-font);
}

/* ---------------------------------------------------------------------- */
/* Navbar (page-specific active state + breadcrumb)                        */
/* ---------------------------------------------------------------------- */

.nkc-nav__item--active {
    color: var(--nk-text);
    position: relative;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--nk-blue);
}

.nkc-breadcrumb {
    padding: 20px 40px 0;
    font-size: 12.5px;
    color: var(--nk-text-dim);
}

.nkc-breadcrumb a {
    color: var(--nk-text-dim);
}

.nkc-breadcrumb span {
    color: var(--nk-text);
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */

.nkc-hero {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 40px 40px 80px;
}

.nkc-hero__content {
    flex: 1;
    max-width: 480px;
    flex-shrink: 0;
}

.nkc-hero__heading {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    background: linear-gradient(100deg, #a78bfa 0%, var(--nk-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nkc-hero__lead {
    font-size: 16px;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0 0 14px;
    line-height: 1.5;
}

.nkc-hero__desc {
    font-size: 13.5px;
    color: var(--nk-text-dim);
    line-height: 1.7;
    margin: 0 0 30px;
}

.nkc-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nkc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--nk-radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--nk-text);
    background: linear-gradient(90deg, #7c3aed, var(--nk-blue));
}

.nkc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--nk-radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--nk-text);
    border: 1px solid var(--nk-border);
}

/* Hero visual */
.nkc-hero__visual {
    position: relative;
    flex: 1.3;
    height: 380px;
    border-radius: var(--nk-radius-lg);
    overflow: hidden;
    border: 1px solid var(--nk-border);
    background:
        radial-gradient(circle at 75% 20%, rgba(124, 58, 237, 0.35), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(41, 169, 255, 0.2), transparent 45%),
        linear-gradient(160deg, #1a1220, #0a0810);
}

.nkc-hero__visual-glyph {
    position: absolute;
    left: 6%;
    bottom: 0;
    width: 260px;
    height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 130px;
    color: rgba(255, 255, 255, 0.14);
}

.nkc-hero__play {
    position: absolute;
    top: 6%;
    right: 34%;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 10px 26px rgba(124, 58, 237, 0.5);
}

/* Floating widgets on the hero visual */
.nkc-widget {
    position: absolute;
    border-radius: var(--nk-radius-md);
    border: 1px solid var(--nk-border);
    background: rgba(9, 10, 16, 0.82);
    backdrop-filter: blur(6px);
    padding: 12px 14px;
}

.nkc-widget--growth {
    top: 10%;
    right: 4%;
    width: 180px;
}

.nkc-widget--revenue {
    bottom: 8%;
    left: 30%;
    width: 190px;
}

.nkc-widget-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nk-text-dim);
    margin-bottom: 4px;
}

.nkc-widget-value-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.nkc-widget-value {
    font-size: 20px;
    font-weight: 800;
}

.nkc-widget-delta {
    font-size: 10.5px;
    font-weight: 700;
    color: #4ade80;
}

.nkc-widget-sub {
    display: block;
    font-size: 9px;
    color: var(--nk-text-dim);
    margin-bottom: 8px;
}

.nkc-widget-spark {
    width: 100%;
    height: 30px;
    display: block;
}

/* Faded preview chips peeking behind the hero visual, echoing the cards below */
.nkc-chip {
    position: absolute;
    width: 130px;
    padding: 10px 12px;
    border-radius: var(--nk-radius-sm);
    border: 1px solid var(--nk-border);
    background: rgba(9, 10, 16, 0.55);
    opacity: 0.55;
    font-size: 9.5px;
}

.nkc-chip__num {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    color: var(--nk-text-dim);
    margin-bottom: 4px;
}

.nkc-chip__title {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.nkc-chip__title--green { color: #4ade80; }

.nkc-chip__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nkc-chip__list li {
    font-size: 8.5px;
    color: var(--nk-text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nkc-chip__list li::before {
    content: '\2713';
    color: #4ade80;
    font-size: 8px;
}

.nkc-chip--creation {
    top: 24%;
    left: 2%;
}

.nkc-chip--audience {
    bottom: 30%;
    left: 42%;
}

.nkc-chip--monetization {
    top: 30%;
    right: -6%;
}

.nkc-chip--coin {
    position: absolute;
    bottom: 6%;
    right: 2%;
    font-size: 30px;
    opacity: 0.5;
    color: #eab308;
}

/* ---------------------------------------------------------------------- */
/* Numbered feature cards                                                   */
/* ---------------------------------------------------------------------- */

.nkc-features {
    padding: 0 40px 40px;
}

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

.nkc-feature {
    padding: 24px 22px;
    border-radius: var(--nk-radius-md);
    border: 1px solid var(--nk-border);
    background: var(--nk-bg-elevated);
}

.nkc-feature__num {
    font-size: 13px;
    font-weight: 800;
    color: var(--nk-text-dim);
    margin-bottom: 14px;
}

.nkc-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nkc-feature__icon svg {
    width: 22px;
    height: 22px;
}

.nkc-feature--purple .nkc-feature__icon { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.nkc-feature--blue   .nkc-feature__icon { background: rgba(41, 169, 255, 0.15); color: var(--nk-blue); }
.nkc-feature--green  .nkc-feature__icon { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.nkc-feature--gold   .nkc-feature__icon { background: rgba(234, 179, 8, 0.15); color: #eab308; }

.nkc-feature__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
}

.nkc-feature__desc {
    font-size: 12px;
    color: var(--nk-text-dim);
    line-height: 1.6;
    margin: 0 0 18px;
}

.nkc-feature__list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.nkc-feature__list li {
    font-size: 12px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 7px;
}

.nkc-feature__list li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    font-size: 8px;
    flex-shrink: 0;
}

.nkc-feature--purple .nkc-feature__list li::before { background: rgba(167, 139, 250, 0.2); color: #a78bfa; }
.nkc-feature--blue   .nkc-feature__list li::before { background: rgba(41, 169, 255, 0.2); color: var(--nk-blue); }
.nkc-feature--green  .nkc-feature__list li::before { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.nkc-feature--gold   .nkc-feature__list li::before { background: rgba(234, 179, 8, 0.2); color: #eab308; }

.nkc-feature__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    border-radius: var(--nk-radius-sm);
    border: 1px solid var(--nk-border);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nk-text);
}

/* ---------------------------------------------------------------------- */
/* Support strip                                                            */
/* ---------------------------------------------------------------------- */

.nkc-support {
    padding: 0 40px 60px;
}

.nkc-support__bar {
    display: flex;
    border-radius: var(--nk-radius-lg);
    border: 1px solid var(--nk-border);
    background: var(--nk-bg-elevated);
    overflow: hidden;
}

.nkc-support__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-right: 1px solid var(--nk-border);
}

.nkc-support__item:last-child {
    border-right: none;
}

.nkc-support__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.nkc-support__icon--purple { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.nkc-support__icon--blue   { background: rgba(41, 169, 255, 0.15); color: var(--nk-blue); }
.nkc-support__icon--green  { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.nkc-support__icon--gold   { background: rgba(234, 179, 8, 0.15); color: #eab308; }

.nkc-support__title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.nkc-support__desc {
    display: block;
    font-size: 11px;
    color: var(--nk-text-dim);
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                               */
/* ---------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .nkc-hero { flex-direction: column; }
    .nkc-hero__content { max-width: 100%; }
    .nkc-hero__visual { width: 100%; }
    .nkc-features__grid { grid-template-columns: repeat(2, 1fr); }
    .nkc-support__bar { flex-wrap: wrap; }
    .nkc-support__item { flex: 1 1 50%; border-bottom: 1px solid var(--nk-border); }
}

@media (max-width: 640px) {
    .nkc-breadcrumb { padding: 16px 18px 0; }
    .nkc-hero { padding: 24px 18px 48px; }
    .nkc-hero__heading { font-size: 32px; }
    .nkc-hero__visual { height: 300px; }
    .nkc-widget { display: none; }
    .nkc-chip { display: none; }
    .nkc-features { padding: 0 18px 32px; }
    .nkc-features__grid { grid-template-columns: 1fr; }
    .nkc-support { padding: 0 18px 40px; }
    .nkc-support__item { flex: 1 1 100%; }
}

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

