/* MySkillDB homepage — Cofounder-inspired layout, pink brand */

body.hp-page {
    background: #fafbfc;
    color: var(--text-primary);
    overflow-x: hidden;
}

body.hp-page::before,
body.hp-page::after {
    display: none;
}

/* ─── Header ─── */
.hp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 0.75rem 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.hp-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(236, 72, 153, 0.08);
}

.hp-header.on-hero {
    background: transparent;
}

.hp-header.on-hero .hp-nav .hp-nav-link {
    color: rgba(255, 255, 255, 0.92);
}

.hp-header.on-hero .hp-nav .hp-nav-link:hover {
    color: #fff;
}

.hp-header.on-hero .hp-logo-text {
    -webkit-text-fill-color: #fff;
    color: #fff;
    background: none;
}

.hp-header.on-hero .hp-btn-outline.hp-btn-nav {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    -webkit-text-fill-color: #fff;
    box-shadow: none;
}

.hp-header.on-hero .hp-btn-outline.hp-btn-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hp-header.scrolled .hp-btn-outline.hp-btn-nav {
    background: #fff;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.hp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.25rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}

.hp-header.scrolled .hp-nav-actions {
    border-left-color: rgba(15, 23, 42, 0.1);
}

.hp-btn-nav {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.hp-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hp-logo-img {
    height: 40px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.hp-logo-img--light {
    display: none;
}

.hp-logo-img--dark {
    display: block;
}

.hp-header.on-hero .hp-logo-img--light {
    display: block;
}

.hp-header.on-hero .hp-logo-img--dark {
    display: none;
}

.hp-header.on-hero .hp-logo:not(:has(.hp-logo-img--light)) .hp-logo-img--dark {
    display: block;
}

.hp-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.hp-nav ul {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hp-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hp-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.15rem;
    transition: color 0.2s;
}

.hp-nav-link span {
    position: relative;
}

/* Active page indicator — animated underline pill */
.hp-nav-link.is-active {
    color: var(--primary-color);
    font-weight: 600;
}

.hp-nav-link.is-active span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient-vibrant);
    animation: hp-nav-pill-in 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

@keyframes hp-nav-pill-in {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Home icon button */
.hp-nav-link-home {
    width: 2.1rem;
    height: 2.1rem;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    margin-right: 0.15rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hp-nav-link-home i {
    font-size: 0.95rem;
}

.hp-nav-link-home:hover {
    background: rgba(236, 72, 153, 0.1);
}

.hp-nav-link-home.is-active {
    background: rgba(236, 72, 153, 0.14);
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.35);
    animation: hp-nav-home-pulse 2s ease-in-out infinite;
}

.hp-nav-link-home.is-active span::after {
    display: none;
}

@keyframes hp-nav-home-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.35); }
    50% { box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.18); }
}

/* On dark hero — invert active colors */
.hp-header.on-hero .hp-nav-link.is-active {
    color: #fff;
}

.hp-header.on-hero .hp-nav-link.is-active span::after {
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.55);
}

.hp-header.on-hero .hp-nav-link-home.is-active {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    animation: hp-nav-home-pulse-hero 2s ease-in-out infinite;
}

@keyframes hp-nav-home-pulse-hero {
    0%, 100% { box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2); }
}

.hp-header.scrolled .hp-nav-link.is-active {
    color: var(--primary-color);
}

.hp-nav a:hover {
    color: var(--primary-color);
}

.hp-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--primary-color);
    cursor: pointer;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-btn-primary {
    background: var(--gradient-vibrant);
    color: #fff;
    -webkit-text-fill-color: #fff;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.45);
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hp-nav .hp-btn-primary.hp-btn-nav,
.hp-nav .hp-btn-primary.hp-btn-nav:hover,
.hp-nav .hp-btn-primary.hp-btn-nav i {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hp-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.hp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hp-btn-outline {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.hp-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hp-container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Hero (Cofounder-style immersive) ─── */
.hp-hero-cine {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(236, 72, 153, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(168, 85, 247, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 60% 90%, rgba(6, 182, 212, 0.25) 0%, transparent 45%),
        linear-gradient(165deg, #1a0a14 0%, #2d1b3d 35%, #1e293b 100%);
    z-index: 0;
}

.hp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hp-hero-grid-cine {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.hp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.hp-hero-eyebrow i {
    color: #f9a8d4;
}

.hp-hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hp-hero-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #fbcfe8, #e9d5ff, #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Product preview mock */
.hp-product-shell {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.hp-product-chrome {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.hp-product-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hp-product-chrome span:first-child { background: #f87171; }
.hp-product-chrome span:nth-child(2) { background: #fbbf24; }
.hp-product-chrome span:nth-child(3) { background: #4ade80; }

.hp-product-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    min-height: 320px;
}

.hp-product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hp-product-nav-item {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-product-nav-item.active {
    background: rgba(236, 72, 153, 0.25);
    color: #fce7f3;
}

.hp-product-main {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.hp-mock-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.hp-mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.hp-mock-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-mock-card strong {
    display: block;
    font-size: 0.65rem;
    color: #f9a8d4;
    margin-bottom: 4px;
}

.hp-mock-card span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.hp-mock-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp-mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
}

.hp-mock-score {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.65rem;
}

/* ─── Hero flow animation (recruiter → hire) ─── */
.hp-flow-demo.hp-product-shell {
    overflow: hidden;
}

.hp-flow-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    min-height: 2rem;
}

.hp-flow-step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--gradient-vibrant);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
    animation: hpFlowNumPop 0.45s ease;
}

@keyframes hpFlowNumPop {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hp-flow-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fce7f3;
    line-height: 1.35;
}

.hp-flow-screens {
    position: relative;
    min-height: 268px;
}

.hp-flow-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.55s;
    pointer-events: none;
}

.hp-flow-screen.is-active {
    position: absolute;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
}

.hp-flow-screen.is-entering:not(.is-active) {
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hp-flow-screen {
        transition: opacity 0.2s ease, visibility 0.2s;
        transform: none;
    }

    .hp-flow-step-num {
        animation: none;
    }
}

.hp-flow-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 4px;
}

.hp-flow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, background 0.3s ease, width 0.3s ease;
    cursor: pointer;
}

.hp-flow-dot.is-active {
    background: linear-gradient(90deg, #ec4899, #a855f7);
    width: 22px;
    border-radius: 999px;
}

.hp-flow-post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
}

.hp-flow-post-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    font-size: 0.72rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hp-flow-muted {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.hp-flow-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.hp-flow-tag {
    font-size: 0.62rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.2);
    color: #fbcfe8;
}

.hp-flow-post-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    position: relative;
    overflow: hidden;
}

/* AI distribute */
.hp-flow-ai-line {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hp-flow-ai-ico {
    color: #f9a8d4;
    animation: hpFlowSpark 1.8s ease-in-out infinite;
}

@keyframes hpFlowSpark {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.12); }
}

.hp-flow-distribute {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-flow-campus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-flow-campus i {
    margin-right: 8px;
    color: #f9a8d4;
}

.hp-flow-campus span {
    font-size: 0.62rem;
    font-weight: 500;
    color: #34d399;
}

.hp-flow-pulse {
    animation: hpFlowBorderPulse 2s ease-in-out infinite;
}

.hp-flow-pulse-delay {
    animation: hpFlowBorderPulse 2s ease-in-out 0.35s infinite;
}

.hp-flow-pulse-delay2 {
    animation: hpFlowBorderPulse 2s ease-in-out 0.7s infinite;
}

@keyframes hpFlowBorderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); border-color: rgba(255, 255, 255, 0.06); }
    50% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.25); border-color: rgba(236, 72, 153, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
    .hp-flow-ai-ico,
    .hp-flow-pulse,
    .hp-flow-pulse-delay,
    .hp-flow-pulse-delay2 {
        animation: none !important;
    }
}

/* College prep */
.hp-flow-college-prep {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-flow-prep-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.74rem;
    font-weight: 600;
    color: #fff;
}

.hp-flow-prep-card span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.hp-flow-prep-card i {
    color: #a5f3fc;
}

/* Mini chat student + AI */
.hp-flow-mini-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-flow-msg {
    font-size: 0.68rem;
    line-height: 1.45;
    padding: 8px 10px;
    border-radius: 10px;
    max-width: 95%;
}

.hp-flow-msg.ai {
    align-self: flex-start;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.25);
    color: rgba(255, 255, 255, 0.92);
}

.hp-flow-ai-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 800;
    color: #fbcfe8;
    margin-right: 6px;
}

.hp-flow-msg.student {
    align-self: flex-end;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.hp-flow-learn-bar-wrap {
    margin-top: 6px;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
}

.hp-flow-learn-bar-wrap span:first-child {
    display: block;
    margin-bottom: 4px;
}

.hp-flow-learn-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.hp-flow-learn-bar > span {
    display: block;
    height: 100%;
    width: 72%;
    background: var(--gradient-vibrant);
    border-radius: 999px;
    animation: hpFlowBarGlow 3s ease-in-out infinite;
}

@keyframes hpFlowBarGlow {
    0%, 100% { opacity: 0.85; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.1); }
}

/* Interview rows */
.hp-flow-interview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.9);
}

.hp-flow-interview-row.muted {
    opacity: 0.65;
}

.hp-flow-sched-btn {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(236, 72, 153, 0.25);
    color: #fce7f3;
}

.hp-flow-sched-btn.hp-flow-shine {
    animation: hpFlowBtnPulse 2s ease-in-out infinite;
}

.hp-flow-pending {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes hpFlowBtnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 12px rgba(236, 72, 153, 0.45); }
}

/* Offers */
.hp-flow-offer-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.hp-flow-offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    animation: hpFlowOfferPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hpFlowOfferPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hp-flow-muted-small {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 4px 0 10px;
    line-height: 1.4;
}

.hp-flow-offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.62rem;
}

.hp-flow-offer-meta span:first-child {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 6px;
    width: 100%;
}

.hp-flow-offer-meta span.ok {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.hp-flow-confetti {
    pointer-events: none;
    margin-top: 10px;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #ec4899 0px,
        #ec4899 4px,
        #a855f7 4px,
        #a855f7 8px,
        #06b6d4 8px,
        #06b6d4 12px,
        transparent 12px,
        transparent 20px
    );
    opacity: 0;
    animation: hpFlowConfettiFade 5s ease-in-out infinite;
}

.hp-flow-screen.is-active .hp-flow-confetti {
    opacity: 0.45;
}

@keyframes hpFlowConfettiFade {
    0%, 100% { opacity: 0.2; transform: translateX(-4px); }
    50% { opacity: 0.55; transform: translateX(4px); }
}

/* Shine sweep on CTA */
.hp-flow-shine {
    position: relative;
    overflow: hidden;
}

.hp-flow-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: hpFlowShine 2.5s ease-in-out infinite;
}

@keyframes hpFlowShine {
    0% { left: -100%; }
    40%, 100% { left: 120%; }
}

@media (prefers-reduced-motion: reduce) {
    .hp-flow-shine::after,
    .hp-flow-learn-bar > span,
    .hp-flow-sched-btn.hp-flow-shine,
    .hp-flow-offer-icon,
    .hp-flow-confetti {
        animation: none !important;
    }

    .hp-flow-screen.is-active .hp-flow-confetti {
        opacity: 0.3;
    }
}

/* ─── Section typography ─── */
.hp-section {
    padding: 6rem 0;
}

.hp-section-tight {
    padding: 4rem 0;
}

.hp-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.hp-h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hp-h2 em {
    font-style: normal;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
}

.hp-center {
    text-align: center;
}

.hp-center .hp-lead {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Platform hub (orchestration diagram) ─── */
.hp-hub-section {
    background: #fff;
    border-radius: 32px 32px 0 0;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
}

.hp-hub-intro {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    padding-left: clamp(1.25rem, 5vw, 3.5rem);
    padding-right: clamp(1.25rem, 5vw, 3.5rem);
}

.hp-hub-intro .hp-lead {
    margin-left: auto;
    margin-right: auto;
}

.hp-hub-panel {
    background: linear-gradient(180deg, #f8fafc 0%, #fef3f9 100%);
    border-radius: 24px;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    margin-top: 2.5rem;
    border: 1px solid var(--border-color);
}

/* Ecosystem hub — recruiters / students / colleges ↔ MySkillDB */
.hp-hub-ecosystem {
    max-width: 520px;
    margin: 0 auto;
}

.hp-hub-eco-caption {
    text-align: center;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0 0 1.5rem;
    min-height: 3rem;
    padding: 0 0.5rem;
    transition: opacity 0.4s ease;
}

.hp-hub-eco-stage {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.hp-hub-eco-pulse {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.15);
    animation: hpEcoPulse 3s ease-out infinite;
}

@keyframes hpEcoPulse {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}

.hp-hub-eco-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hp-eco-line {
    stroke: rgba(236, 72, 153, 0.2);
    stroke-width: 2;
    stroke-dasharray: 6 6;
    transition: stroke 0.5s ease, stroke-width 0.5s ease;
}

.hp-hub-ecosystem[data-active-line="r"] .line-r,
.hp-hub-ecosystem[data-active-line="s"] .line-s,
.hp-hub-ecosystem[data-active-line="c"] .line-c {
    stroke: url(#hpEcoGrad);
    stroke-width: 3;
    stroke-dasharray: none;
    animation: hpEcoLineFlow 1.2s ease-in-out infinite;
}

@keyframes hpEcoLineFlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hp-hub-eco-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(100px, 32vw, 120px);
    height: clamp(100px, 32vw, 120px);
    border-radius: 50%;
    background: var(--gradient-vibrant);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 3;
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.35);
}

.hp-hub-eco-logo {
    font-weight: 800;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.2;
}

.hp-hub-eco-tag {
    font-size: 0.62rem;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-hub-eco-node {
    position: absolute;
    z-index: 2;
    width: clamp(108px, 30vw, 128px);
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.hp-hub-eco-node.is-active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.2);
    transform: scale(1.06);
}

.hp-hub-eco-node[data-eco="0"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hp-hub-eco-node[data-eco="0"].is-active {
    transform: translateX(-50%) scale(1.06);
}

.hp-hub-eco-node[data-eco="1"] {
    bottom: 4%;
    left: 0;
}

.hp-hub-eco-node[data-eco="2"] {
    bottom: 4%;
    right: 0;
}

.hp-hub-eco-node-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    border-radius: 12px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.hp-hub-eco-node.is-active .hp-hub-eco-node-icon {
    background: var(--gradient-vibrant);
    color: #fff;
}

.hp-hub-eco-node h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.hp-hub-eco-node p {
    font-size: 0.68rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.35;
}

.hp-hub-eco-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.hp-hub-eco-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hp-hub-eco-dot.is-active {
    background: var(--gradient-vibrant);
    width: 24px;
    border-radius: 999px;
}

@media (min-width: 768px) {
    .hp-hub-ecosystem {
        max-width: 640px;
    }

    .hp-hub-eco-stage {
        max-width: 400px;
    }

    .hp-hub-eco-node {
        width: 140px;
        padding: 14px 12px;
    }

    .hp-hub-eco-node h4 {
        font-size: 0.9rem;
    }

    .hp-hub-eco-node p {
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hp-hub-eco-pulse,
    .hp-eco-line {
        animation: none !important;
    }
}

.hp-hub-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 767px) {
    .hp-hub-pills {
        grid-template-columns: 1fr;
    }
}

.hp-hub-pill h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.hp-hub-pill p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ─── Journey pipeline ─── */
.hp-pipeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
}

.hp-pipe-step {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    text-align: center;
    padding: 0 0.5rem;
    position: relative;
}

.hp-pipe-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -8px;
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.hp-pipe-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 16px;
    background: var(--gradient-soft);
    border: 1px solid rgba(236, 72, 153, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.hp-pipe-step h4 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.hp-pipe-step p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ─── Stakeholder deep-dives (alternating) ─── */
.hp-dive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hp-dive:last-child {
    border-bottom: none;
}

.hp-dive.reverse {
    direction: rtl;
}

.hp-dive.reverse > * {
    direction: ltr;
}

.hp-dive-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-vibrant);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hp-dive h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.hp-dive-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hp-dive-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.hp-dive-list li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hp-dive-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.hp-mock-ui {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.hp-mock-ui-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.hp-mock-ui-body {
    padding: 20px;
}

/* Recruiter mock */
.hp-rec-job {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
}

.hp-rec-job h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hp-rec-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hp-rec-applicant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8rem;
}

/* Student mock */
.hp-student-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.hp-chat-bubble.ai {
    background: var(--gradient-soft);
    border: 1px solid rgba(236, 72, 153, 0.15);
    align-self: flex-start;
}

.hp-chat-bubble.user {
    background: var(--gradient-vibrant);
    color: #fff;
    align-self: flex-end;
}

.hp-skill-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.hp-skill-bar span {
    display: block;
    height: 100%;
    background: var(--gradient-vibrant);
    border-radius: 4px;
}

/* Interview mock */
.hp-interview-card {
    text-align: center;
    padding: 24px;
}

.hp-interview-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-vibrant);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.hp-interview-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.hp-interview-btns span {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hp-interview-btns .join {
    background: #10b981;
    color: #fff;
}

.hp-interview-btns .decline {
    background: #f1f5f9;
    color: var(--text-secondary);
}

/* College mock */
.hp-college-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hp-college-tile {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Capabilities wall */
.hp-cap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 2rem auto 0;
}

.hp-cap-tag {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.hp-cap-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Blog */
.hp-blog-section {
    background: linear-gradient(180deg, #fff 0%, #fef3f9 100%);
}

/* Blog carousel filters */
.blog-carousel-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid var(--border-color);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.blog-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.blog-filter-btn.active {
    background: var(--gradient-vibrant);
    border-color: transparent;
    color: #fff;
}

/* Carousel layout */
.blog-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.blog-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.blog-carousel-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.12);
}

.blog-carousel-card.hidden {
    display: none;
}

.blog-carousel-img {
    position: relative;
    overflow: hidden;
}

.blog-carousel-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.blog-carousel-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-carousel-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-carousel-date {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.blog-carousel-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blog-carousel-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-carousel-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-carousel-read-btn:hover {
    gap: 0.7rem;
}

/* Arrows */
.blog-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-carousel-arrow:hover {
    box-shadow: 0 6px 24px rgba(236, 72, 153, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.blog-carousel-prev { left: -6px; }
.blog-carousel-next { right: -6px; }

/* Dots */
.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.blog-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.blog-carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .blog-carousel-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 576px) {
    .blog-carousel-card {
        flex: 0 0 85%;
    }
    .blog-carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }
    .blog-carousel-prev { left: 4px; }
    .blog-carousel-next { right: 4px; }
}

/* CTA band */
.hp-cta-band {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hp-cta-band-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(236, 72, 153, 0.2), transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.15), transparent 50%),
        linear-gradient(135deg, #1e293b, #312e81);
}

.hp-cta-card {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hp-lead-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.hp-lead-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.hp-lead-form input,
.hp-lead-form select,
.hp-lead-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
}

.hp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lead-alert {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.lead-alert-success { background: #ecfdf5; color: #065f46; }
.lead-alert-error { background: #fef2f2; color: #991b1b; }

/* Footer */
.hp-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hp-footer-card {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.2), rgba(6, 182, 212, 0.15));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-footer-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.hp-footer-card h4 i {
    color: #67e8f9;
    font-size: 0.95rem;
}

.hp-footer-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    background: var(--gradient-vibrant);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 28px rgba(236, 72, 153, 0.28);
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hp-footer-help-btn i {
    flex-shrink: 0;
    font-size: 0.95em;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hp-footer-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.38);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hp-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hp-footer h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hp-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 2;
}

.hp-footer a:hover {
    color: #f9a8d4;
}

.hp-footer .hp-social-btn,
.hp-footer .hp-social-btn span,
.hp-footer .hp-social-btn i,
.hp-footer .hp-footer-card .hp-btn-primary,
.hp-footer .hp-footer-card .hp-btn-primary i {
    color: #fff;
}

.hp-footer .hp-social-btn:hover,
.hp-footer .hp-social-btn:hover span,
.hp-footer .hp-footer-card .hp-btn-primary:hover,
.hp-footer .hp-footer-card .hp-btn-primary:hover i {
    color: #fff;
}

.hp-footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 0.8rem;
}

.hp-footer-admin-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
}

.hp-footer-admin-link:hover {
    color: #f9a8d4;
}

/* Footer social follow */
.hp-social-follow {
    margin-top: 1.5rem;
}

.hp-social-follow-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.hp-social-follow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hp-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.hp-social-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.hp-social-btn i {
    font-size: 1rem;
}

.hp-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    box-shadow: 0 4px 16px rgba(221, 42, 123, 0.35);
}

.hp-social-linkedin {
    background: #0a66c2;
    box-shadow: 0 4px 16px rgba(10, 102, 194, 0.35);
}

@media (max-width: 992px) {
    .hp-hero-grid-cine,
    .hp-hub-layout,
    .hp-dive,
    .hp-footer-grid {
        grid-template-columns: 1fr;
    }

    .hp-dive.reverse {
        direction: ltr;
    }

    .hp-product-body {
        grid-template-columns: 1fr;
    }

    .hp-hub-pills {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hp-hub-panel {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .hp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e1030 0%, #2d1b4e 100%);
        padding: 1.25rem 1.5rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 16px 16px;
    }

    .hp-nav.open {
        display: block;
    }

    .hp-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .hp-nav a {
        color: #f1e8ff !important;
        -webkit-text-fill-color: #f1e8ff !important;
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-size: 1rem;
        transition: background 0.2s;
    }

    .hp-nav .hp-nav-link {
        display: flex;
        padding: 0.75rem 1rem;
    }

    .hp-nav-link.is-active {
        background: rgba(236, 72, 153, 0.22) !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        font-weight: 600;
    }

    .hp-nav-link.is-active span::after {
        display: none;
    }

    .hp-nav-link-home {
        width: auto;
        height: auto;
        margin-right: 0;
    }

    .hp-nav-link-home.is-active {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
        animation: none;
    }

    .hp-nav a:hover {
        background: rgba(236, 72, 153, 0.15);
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .hp-nav .hp-btn-primary.hp-btn-nav:hover {
        background: var(--gradient-vibrant);
    }

    .hp-nav .hp-btn-primary.hp-btn-nav,
    .hp-nav .hp-btn-outline.hp-btn-nav {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .hp-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-left: 0;
        padding-left: 0;
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hp-nav .hp-btn-primary {
        background: var(--gradient-vibrant);
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        text-align: center;
        margin-top: 0.5rem;
    }

    .hp-nav .hp-btn-outline {
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        text-align: center;
    }

    .hp-menu-toggle {
        display: block;
        color: var(--primary-color);
    }

    .hp-header.on-hero .hp-menu-toggle {
        color: #fff;
    }

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

@media (max-width: 576px) {
    .hp-pipeline {
        flex-direction: column;
        align-items: center;
    }

    .hp-pipe-step:not(:last-child)::after {
        display: none;
    }

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

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