/* ==========================================================================
   Herody public site — "Future of Work" UI, matched to Home UI.pdf
   Self-contained, namespaced .hp-* to avoid collision with legacy themes.
   ========================================================================== */

:root {
    --hp-black:      #000000;
    --hp-ink:        #ffffff;
    --hp-muted:      #e7ddf5;
    --hp-purple:     #6f359c;
    --hp-grad-btn:   linear-gradient(95deg, #354faf 0%, #7a54c8 50%, #a86ad6 100%);
    --hp-grad-card:  linear-gradient(135deg, #2d4dac 0%, #6c4fc0 50%, #ac6dd9 100%);
    --hp-grad-mag:   linear-gradient(120deg, #3a0b52 0%, #7a0c8b 45%, #4a0a5e 100%);
    --hp-bar:        #211d52;
    --hp-radius:     22px;
    --hp-maxw:       1200px;
    --hp-display:    'Rubik', system-ui, sans-serif;
    --hp-hex:        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath d='M30 3 L90 3 L118 52 L90 101 L30 101 L2 52 Z' fill='none' stroke='%238a3fd0' stroke-width='2.5'/%3E%3C/svg%3E");
}

/* ---------- base ---------- */
.hp-body {
    margin: 0;
    background: var(--hp-black);
    color: var(--hp-ink);
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.hp-body * { box-sizing: border-box; }
.hp-body img { max-width: 100%; height: auto; display: block; }
.hp-body a { text-decoration: none; color: inherit; }

.hp-container { width: 100%; max-width: var(--hp-maxw); margin: 0 auto; padding: 0 30px; }

/* ---------- buttons & pills ---------- */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 999px;
    background: var(--hp-grad-btn);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(76, 60, 190, .45);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.hp-btn:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 16px 38px rgba(76, 60, 190, .6); }
.hp-btn svg { width: 18px; height: 18px; }
.hp-btn--sm { padding: 11px 26px; font-size: 15px; }

.hp-pill {
    display: inline-block;
    padding: 9px 26px;
    border-radius: 999px;
    background: var(--hp-grad-btn);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* ---------- headings ---------- */
.hp-display {
    font-family: var(--hp-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .01em;
    color: #fff;
    line-height: 1.06;
    margin: 0;
}
.hp-heading { text-align: center; font-size: clamp(30px, 4.4vw, 52px); }
.hp-subheading {
    text-align: center;
    max-width: 900px;
    margin: 18px auto 0;
    color: #fff;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 500;
}

/* ---------- section scaffold ---------- */
.hp-section { position: relative; padding: 90px 0; overflow: hidden; }

/* hexagon decor helpers */
.hp-hex {
    position: absolute;
    background-image: var(--hp-hex);
    background-repeat: repeat;
    background-size: 62px 54px;
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}
.hp-hex-cluster {
    position: absolute;
    width: 260px; height: 220px;
    background-image: var(--hp-hex);
    background-size: 58px 50px;
    opacity: .45;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(circle, #000 25%, transparent 70%);
    mask-image: radial-gradient(circle, #000 25%, transparent 70%);
}

/* =========================================================================
   HEADER (transparent, overlays hero)
   ========================================================================= */
.hp-header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 900;
}
.hp-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; }
.hp-logo img { height: 58px; width: auto; filter: brightness(0) invert(1); }
.hp-menu ul { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.hp-menu a { font-size: 16px; color: #fff; font-weight: 500; transition: opacity .2s; }
.hp-menu a:hover { opacity: .8; }
.hp-menu a.active { font-weight: 600; }

.hp-dropdown { position: relative; }
.hp-dropdown__btn { background: none; border: none; color: #fff; font: 500 16px 'Poppins', sans-serif; cursor: pointer; padding: 0; }
.hp-dropdown__menu {
    position: absolute;
    top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 190px;
    background: #1b0c33;
    border: 1px solid rgba(160,120,220,.25);
    border-radius: 12px;
    padding: 8px;
    opacity: 0; visibility: hidden;
    transition: .2s;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
    z-index: 20;
}
.hp-dropdown:hover .hp-dropdown__menu, .hp-dropdown.is-open .hp-dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%); }
.hp-dropdown__menu a { display: block; padding: 9px 14px; border-radius: 8px; color: #d7c7f0; font-size: 14px; }
.hp-dropdown__menu a:hover { background: rgba(139,47,214,.25); color: #fff; }

.hp-nav__right { display: flex; align-items: center; gap: 16px; }
.hp-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hp-burger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }

.hp-mobile {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(6,3,12,.98);
    backdrop-filter: blur(6px);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto; padding: 24px;
}
.hp-mobile.is-open { transform: translateX(0); }
.hp-mobile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.hp-mobile__top img { height: 46px; }
.hp-mobile__close { background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
.hp-mobile ul { list-style: none; margin: 0; padding: 0; }
.hp-mobile > ul > li { border-bottom: 1px solid rgba(160,120,220,.2); }
.hp-mobile > ul > li > a, .hp-mobile__sub-label { display: block; padding: 15px 4px; color: #e7ddf5; font-size: 16px; font-weight: 500; }
.hp-mobile__sub-label { color: #fff; font-weight: 600; }
.hp-mobile__sub { padding-left: 16px !important; }
.hp-mobile__sub li a { display: block; padding: 10px 4px; color: #b9a6d8; font-size: 15px; }
.hp-mobile .hp-btn { margin-top: 22px; width: 100%; justify-content: center; }

/* =========================================================================
   HERO
   ========================================================================= */
.hp-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background-color: #000;
    background-image: url("../img/hero-bg.jpg");
    background-size: cover;
    background-position: left center;
}
.hp-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: 100vh; }
.hp-hero__text { max-width: 520px; padding: 150px 0 90px; }
.hp-hero__title { font-family: var(--hp-display); font-weight: 800; text-transform: uppercase; font-size: clamp(40px, 5.6vw, 68px); line-height: 1.12; letter-spacing: .005em; color: #fff; margin: 0 0 26px; }
.hp-hero__title .accent { display: block; }
.hp-hero__text p { color: #fff; font-size: clamp(16px, 1.6vw, 19px); margin: 0 0 6px; font-weight: 500; }
.hp-hero__sub { margin: 22px 0 34px !important; }
.hp-hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; z-index: 1; }
.hp-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.hp-hero__media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.9) 14%, rgba(0,0,0,0) 42%); }

/* =========================================================================
   FOR BUSINESSES CTA
   ========================================================================= */
.hp-biz {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(680px 520px at 82% 42%, rgba(150, 55, 200, .8), rgba(80, 20, 120, 0) 60%),
        linear-gradient(90deg, #000 0%, #0a0414 40%, #1a0930 100%);
}
.hp-biz__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.hp-biz__title { font-family: var(--hp-display); font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 4.6vw, 56px); line-height: 1.1; color: #fff; margin: 22px 0 26px; }
.hp-biz__inner p { color: #fff; font-weight: 500; margin: 0 auto 32px; max-width: 560px; font-size: clamp(15px,1.5vw,18px); }
.hp-biz__hex { bottom: 40px; left: 3%; width: 240px; height: 300px; }
/* connected circular photos on the right */
.hp-biz__nodes { position: absolute; top: 50%; right: 3%; transform: translateY(-50%); width: 420px; height: 500px; z-index: 1; }
.hp-biz__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hp-biz__circle { position: absolute; border-radius: 50%; object-fit: cover; border: 4px solid #8a5fd0; box-shadow: 0 0 0 1px rgba(168,106,214,.5), 0 14px 34px rgba(0,0,0,.5); }
.hp-biz__circle.n1 { width: 150px; height: 150px; top: 8px; right: 96px; }
.hp-biz__circle.n2 { width: 210px; height: 210px; top: 120px; right: -6px; }
.hp-biz__circle.n3 { width: 150px; height: 150px; top: 330px; right: 120px; }

/* =========================================================================
   CARDS — why businesses
   ========================================================================= */
.hp-why-biz {
    background:
        radial-gradient(600px 500px at 2% 60%, rgba(120, 45, 170, .55), transparent 60%),
        radial-gradient(500px 400px at 98% 90%, rgba(120, 45, 170, .35), transparent 60%),
        #000;
}
.hp-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; margin-top: 56px; }
.hp-card {
    flex: 0 1 330px;
    background: var(--hp-grad-card);
    border-radius: var(--hp-radius);
    padding: 34px 30px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(45, 30, 110, .5);
}
.hp-card__icon { width: 112px; height: 112px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.hp-card__icon--wide { width: 172px; height: 124px; }
.hp-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.hp-card p { margin: 0; color: #fff; font-size: 18px; font-weight: 500; }

/* =========================================================================
   STATS — why gigworkers (bright purple block)
   ========================================================================= */
.hp-why-gig {
    background:
        radial-gradient(700px 480px at 50% 42%, rgba(150, 70, 195, .9), rgba(70, 25, 110, .55) 70%),
        linear-gradient(180deg, #3a1560 0%, #2a1048 100%);
}
.hp-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; margin-top: 56px; }
.hp-stat {
    flex: 0 1 250px;
    background: linear-gradient(150deg, rgba(70,90,190,.72), rgba(150,95,205,.72));
    border: 1px solid rgba(200,170,240,.28);
    border-radius: var(--hp-radius);
    padding: 34px 24px;
    text-align: center;
    box-shadow: none;
}
.hp-stat__icon { height: 78px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.hp-stat__icon img { height: 100%; width: auto; object-fit: contain; }
.hp-stat__num { font-family: var(--hp-display); font-weight: 700; font-size: 40px; line-height: 1; color: #fff; margin-bottom: 6px; }
.hp-stat__label { color: #fff; font-size: 15px; font-weight: 500; }

/* =========================================================================
   MARQUEE (colleges / brands / news / testimonials)
   ========================================================================= */
.hp-marquee { position: relative; overflow: hidden; width: 100%; margin-top: 44px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.hp-marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: hp-scroll 48s linear infinite; }
.hp-marquee--rev .hp-marquee__track { animation-duration: 36s; }
.hp-marquee:hover .hp-marquee__track { animation-play-state: paused; }
@keyframes hp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hp-tile {
    flex: 0 0 auto;
    width: 150px; height: 150px;
    background: #fff;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.hp-tile img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.hp-tile--news { width: 215px; height: 150px; }

.hp-colleges, .hp-brands, .hp-news, .hp-testi {
    background:
        radial-gradient(620px 460px at 85% 30%, rgba(130, 40, 185, .5), transparent 60%),
        radial-gradient(420px 360px at 6% 88%, rgba(130, 40, 185, .4), transparent 60%),
        #000;
}

/* =========================================================================
   DOWNLOAD BANDS (magenta-purple)
   ========================================================================= */
.hp-dl-band { position: relative; overflow: hidden; padding: 66px 0; text-align: center; background: var(--hp-grad-mag); }
.hp-dl-band h2 { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; font-family: var(--hp-display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 3.2vw, 40px); line-height: 1.16; color: #fff; }

.hp-dl-cta { position: relative; overflow: hidden; padding: 70px 0; background: var(--hp-grad-mag); }
.hp-dl-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hp-dl-cta__inner h2 { margin: 0; max-width: 640px; font-family: var(--hp-display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.8vw, 38px); line-height: 1.18; color: #fff; }
.hp-dl-cta__right { text-align: left; }
.hp-dl-cta__note { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: 15px; font-weight: 500; color: #fff; }
.hp-dl-cta__note::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: #1db954; box-shadow: 0 0 0 4px rgba(29,185,84,.25); }

/* =========================================================================
   TESTIMONIALS (white cards)
   ========================================================================= */
.hp-testi-card {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    color: #222;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.hp-testi-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.hp-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--hp-grad-btn); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.hp-testi-card__head h4 { margin: 0 0 2px; font-size: 15px; color: #1c1c28; }
.hp-testi-card__head p { margin: 0; font-size: 12.5px; color: #7a7a88; }
.hp-testi-card__text { font-size: 13.5px; color: #444; margin: 0 0 16px; line-height: 1.6; }
.hp-testi-card__tag { display: inline-block; background: #f3eefb; color: #6b3fb0; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.hp-footer { position: relative; overflow: hidden; background: #000; padding-top: 70px; }
.hp-hex--fl { top: 40px; left: 0; width: 120px; height: 520px; }
.hp-hex--fr { top: 20px; right: 0; width: 120px; height: 560px; }
.hp-footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1.2fr 1.1fr; gap: 50px; padding-bottom: 54px; }
.hp-footer__col h4 { font-size: 26px; font-weight: 700; margin: 0 0 22px; color: #fff; }
.hp-footer__col p { color: #fff; font-size: 15px; margin: 0 0 14px; line-height: 1.7; }
.hp-footer__logo { width: 74px; height: auto; margin-top: 10px; filter: brightness(0) invert(1); }
.hp-footer__row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.hp-footer__row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; stroke: #fff; }
.hp-footer__row p { margin: 0; }
.hp-socials { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.hp-socials > span { color: #fff; font-size: 17px; font-weight: 500; }
.hp-social { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: transform .2s; }
.hp-social:hover { transform: translateY(-3px); }
.hp-social svg { width: 22px; height: 22px; }
.hp-social--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-radius: 9px; }
.hp-social--li { background: #0a66c2; border-radius: 7px; }
.hp-social--fb { background: #1877f2; border-radius: 50%; }
.hp-footer__bar { position: relative; z-index: 1; margin: 0 auto 30px; background: var(--hp-bar); border-radius: 12px; text-align: center; padding: 22px 24px; font-size: clamp(13px, 1.6vw, 18px); font-weight: 500; color: #fff; }

/* =========================================================================
   REVEAL
   ========================================================================= */
.hp-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.hp-reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
    .hp-menu, .hp-nav__right .hp-btn { display: none; }
    .hp-burger { display: flex; }
    .hp-biz__nodes { display: none; }
    .hp-hero__text { padding: 130px 0 60px; }
}
@media (max-width: 900px) {
    .hp-hero { min-height: auto; }
    .hp-hero__inner { display: block; min-height: auto; }
    .hp-hero__text { max-width: none; text-align: center; padding: 120px 0 36px; }
    .hp-hero__title .accent { display: inline; }
    .hp-hero__media { position: relative; width: 100%; height: 300px; }
    .hp-hero__media::before { background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 55%); }
    .hp-footer__grid { grid-template-columns: 1fr 1fr; }
    .hp-dl-cta__inner { flex-direction: column; text-align: center; }
    .hp-dl-cta__note { justify-content: center; }
}
@media (max-width: 620px) {
    .hp-section, .hp-biz { padding: 64px 0; }
    .hp-container { padding: 0 20px; }
    .hp-footer__grid { grid-template-columns: 1fr; gap: 34px; }
    .hp-tile { width: 120px; height: 120px; }
    .hp-tile--news { width: 180px; height: 120px; }
}

/* =========================================================================
   GIGWORKERS PAGE
   ========================================================================= */
.hp-gig-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(700px 560px at 4% 96%, rgba(150, 20, 150, .85), transparent 60%),
        radial-gradient(520px 520px at -6% 26%, rgba(120, 18, 130, .5), transparent 60%),
        #000;
}
.hp-gig-hero__inner { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 30px; min-height: 82vh; padding-top: 120px; }
.hp-gig-hero__text { flex: 0 0 46%; padding-bottom: 70px; }
.hp-gig-hero__text h1 { font-size: clamp(34px, 4.8vw, 58px); margin: 0 0 18px; }
.hp-gig-hero__sub { color: #fff; font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; margin: 0 0 24px; }
.hp-gig-list { list-style: none; padding: 0; margin: 0; }
.hp-gig-list li { position: relative; padding-left: 26px; color: #fff; font-size: clamp(16px, 1.5vw, 19px); font-weight: 600; margin-bottom: 14px; }
.hp-gig-list li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.hp-gig-hero__img { flex: 1; align-self: flex-end; min-width: 0; }
.hp-gig-hero__img img { width: 100%; max-width: 680px; margin-left: auto; display: block; }

.hp-gig-journey {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background:
        radial-gradient(760px 440px at 50% 4%, rgba(160, 20, 165, .9), transparent 64%),
        linear-gradient(180deg, #5c0c68 0%, #3a0a48 58%, #120318 100%);
}
.hp-gig-journey__title { text-align: left; font-size: clamp(26px, 3.6vw, 46px); margin: 0 0 56px; }
.hp-gig-steps { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 54px; }
.hp-gig-step { flex: 1 1 250px; text-align: center; }
.hp-gig-step__img { height: 200px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 18px; }
.hp-gig-step__img img { max-height: 100%; width: auto; object-fit: contain; }
.hp-gig-step p { color: #fff; font-weight: 600; font-size: clamp(15px, 1.5vw, 19px); margin: 0; }

@media (max-width: 900px) {
    .hp-gig-hero__inner { flex-direction: column; align-items: stretch; min-height: auto; padding-top: 110px; text-align: center; }
    .hp-gig-hero__text { flex: none; padding-bottom: 20px; }
    .hp-gig-list { display: inline-block; text-align: left; }
    .hp-gig-hero__img img { margin: 0 auto; }
    .hp-gig-journey__title { text-align: center; }
    .hp-gig-steps { gap: 40px; }
    .hp-gig-step { flex: 1 1 100%; }
    .hp-gig-journey .hp-btn { display: flex; width: fit-content; margin: 0 auto; }
}

/* =========================================================================
   BUSINESSES PAGE
   ========================================================================= */
.hp-biz-hero {
    position: relative; overflow: hidden;
    background: radial-gradient(700px 640px at 2% 90%, rgba(150, 18, 150, .8), transparent 60%), #000;
}
.hp-biz-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 20px; min-height: 88vh; padding-top: 120px; }
.hp-biz-hero__text { flex: 0 0 47%; }
.hp-biz-hero__lead { color: #fff; font-size: clamp(16px, 1.7vw, 22px); margin: 0 0 44px; max-width: 560px; }
.hp-biz-points { display: flex; flex-direction: column; gap: 34px; }
.hp-biz-point { display: flex; align-items: center; gap: 16px; }
.hp-biz-point__icon { font-size: 30px; line-height: 1; flex-shrink: 0; }
.hp-biz-point h3 { font-family: var(--hp-display); text-transform: uppercase; font-size: clamp(19px, 2.3vw, 30px); margin: 0; color: #fff; }
.hp-biz-hero__img { flex: 1; align-self: center; min-width: 0; }
.hp-biz-hero__img img { width: 100%; max-width: 760px; margin-left: auto; display: block; }

.hp-biz-process {
    position: relative; overflow: hidden; padding: 30px 0 120px;
    background: radial-gradient(780px 540px at 32% 42%, rgba(150, 24, 158, .85), transparent 62%), linear-gradient(180deg, #4a0a56 0%, #2a0838 68%, #120318 100%);
}
.hp-biz-process__title { text-align: center; margin: 0 0 40px; }
.hp-steps { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 16px; }
.hp-step { flex: 1; text-align: center; }
.hp-step__label { color: #fff; font-weight: 600; font-size: clamp(15px, 1.5vw, 21px); margin-bottom: 14px; }
.hp-step__img { height: 150px; display: flex; align-items: center; justify-content: center; }
.hp-step__img img { max-height: 100%; width: auto; object-fit: contain; }
.hp-step:nth-child(1) { margin-top: 20px; }
.hp-step:nth-child(2) { margin-top: 160px; }
.hp-step:nth-child(3) { margin-top: 20px; }
.hp-step:nth-child(4) { margin-top: 120px; }
.hp-steps__wave { position: absolute; top: 60px; left: 0; width: 100%; height: 320px; z-index: 1; pointer-events: none; }

.hp-biz-offer {
    position: relative; overflow: hidden; padding: 90px 0;
    background: radial-gradient(780px 500px at 50% 6%, rgba(158, 20, 165, .85), transparent 60%), linear-gradient(180deg, #4a0a56 0%, #2a0838 100%);
}
.hp-biz-offer__title { text-align: center; margin: 0 0 60px; }
.hp-offer-cards { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; align-items: flex-start; }
.hp-offer-card { flex: 1 1 330px; max-width: 400px; background: var(--hp-grad-card); border-radius: 20px; padding: 30px 30px 36px; box-shadow: 0 20px 46px rgba(45, 30, 110, .5); }
.hp-offer-card__img { height: 165px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.hp-offer-card__img img { max-height: 100%; width: auto; object-fit: contain; }
.hp-offer-card h3 { font-family: var(--hp-display); text-transform: uppercase; text-align: center; font-size: clamp(17px, 1.8vw, 23px); line-height: 1.2; margin: 0 0 22px; color: #fff; }
.hp-offer-card p { color: #fff; font-weight: 500; margin: 0 0 12px; font-size: 15px; }
.hp-offer-card ul { list-style: disc; padding-left: 22px; margin: 0; }
.hp-offer-card li { color: #fff; font-weight: 500; margin-bottom: 8px; font-size: 15px; }

.hp-biz-cta {
    position: relative; overflow: hidden; padding: 70px 0 96px;
    background: radial-gradient(720px 480px at 28% 50%, rgba(150, 24, 162, .85), transparent 62%), linear-gradient(180deg, #4a0a56 0%, #1a0524 100%);
}
.hp-biz-cta__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 40px; }
.hp-biz-cta__left { flex: 1; }
.hp-biz-cta__left h2 { text-align: left; margin: 0 0 28px; }
.hp-biz-cta__know { display: flex; align-items: center; gap: 12px; color: #fff; font-size: clamp(16px, 1.6vw, 20px); font-weight: 600; margin-bottom: 38px; }
.hp-biz-cta__know::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: #22c55e; }
.hp-biz-cta__right { flex: 0 0 42%; text-align: center; }
.hp-biz-cta__right img { width: 100%; max-width: 470px; margin: 0 auto 14px; display: block; }
.hp-biz-cta__scale { color: #fff; font-weight: 600; font-size: clamp(16px, 1.6vw, 22px); }

@media (max-width: 980px) {
    .hp-steps { flex-wrap: wrap; gap: 40px; }
    .hp-step { flex: 1 1 45%; margin-top: 0 !important; }
    .hp-steps__wave { display: none; }
}
@media (max-width: 900px) {
    .hp-biz-hero__inner { flex-direction: column; align-items: stretch; min-height: auto; padding-top: 110px; text-align: center; }
    .hp-biz-hero__text { flex: none; }
    .hp-biz-points { align-items: center; }
    .hp-biz-hero__img img { margin: 24px auto 0; }
    .hp-biz-cta__inner { flex-direction: column; }
    .hp-biz-cta__left h2 { text-align: center; }
    .hp-biz-cta__know { justify-content: center; }
    .hp-biz-cta__left .hp-btn { display: flex; width: fit-content; margin: 0 auto; }
}
@media (max-width: 620px) {
    .hp-step { flex: 1 1 100%; }
    .hp-biz-point { flex-direction: row; }
}

/* =========================================================================
   CAREERS PAGE
   ========================================================================= */
.hp-career-hero {
    position: relative; overflow: hidden;
    background: radial-gradient(760px 600px at 0% 48%, rgba(150, 18, 150, .78), transparent 60%), #000;
}
.hp-career-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 30px; padding: 150px 0 70px; }
.hp-career-hero__text { flex: 1; min-width: 0; }
.hp-career-hero__text h1 { text-transform: uppercase; font-size: clamp(34px, 6vw, 78px); line-height: 1.02; margin: 0 0 22px; color: #fff; letter-spacing: .5px; }
.hp-career-hero__sub { color: #fff; font-weight: 600; font-size: clamp(16px, 1.9vw, 24px); margin: 0; }
.hp-career-hero__img { flex: 0 0 240px; text-align: right; }
.hp-career-hero__img img { width: 100%; max-width: 210px; display: inline-block; }

.hp-career-jobs {
    position: relative; overflow: hidden; padding: 20px 0 130px;
    background: radial-gradient(680px 560px at 0% 55%, rgba(150, 24, 158, .82), transparent 58%), #000;
}
.hp-job-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.hp-job-card {
    display: flex; flex-direction: column; align-items: flex-start;
    border-radius: 16px; padding: 34px 34px 30px;
    box-shadow: 0 22px 50px rgba(30, 18, 90, .5);
}
.hp-job-card:nth-child(odd)  { background: linear-gradient(135deg, #5a3fb0 0%, #7b4fc4 58%, #9d5fca 100%); }
.hp-job-card:nth-child(even) { background: linear-gradient(140deg, #1e2c78 0%, #40379a 58%, #7a4aae 100%); }
.hp-job-card__meta { list-style: none; margin: 0 0 26px; padding: 0; }
.hp-job-card__meta li { color: #f4eefc; font-size: clamp(15px, 1.35vw, 18px); margin-bottom: 8px; }
.hp-job-card__meta li span { color: #fff; }
.hp-job-card__btn { align-self: flex-start; margin-top: auto; }

/* ---- lightweight modal ---- */
.hp-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.hp-modal.is-open { display: flex; }
.hp-modal__overlay { position: absolute; inset: 0; background: rgba(6, 2, 14, .74); backdrop-filter: blur(3px); }
.hp-modal__dialog {
    position: relative; z-index: 2; width: 100%; max-width: 640px; max-height: 86vh; overflow-y: auto;
    background: linear-gradient(160deg, #241042 0%, #180a2e 100%);
    border: 1px solid rgba(150, 110, 213, .32); border-radius: 18px; padding: 34px 36px 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.hp-modal__close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background .2s; }
.hp-modal__close:hover { background: rgba(255, 255, 255, .18); }
.hp-modal__title { font-family: var(--hp-display); color: #fff; font-size: clamp(20px, 2.4vw, 26px); margin: 0 40px 22px 0; }
.hp-modal__section { margin-bottom: 22px; }
.hp-modal__section h4 { font-family: var(--hp-display); color: #c79bef; font-size: 18px; margin: 0 0 12px; }
.hp-modal__section p { color: #eadff7; margin: 0 0 7px; font-size: 15px; }
.hp-modal__section p span { color: #fff; font-weight: 600; }
.hp-modal__section ul { list-style: disc; padding-left: 22px; margin: 0; }
.hp-modal__section li { color: #eadff7; margin-bottom: 8px; font-size: 15px; }
.hp-modal__foot { display: flex; justify-content: flex-end; padding-top: 8px; }

@media (max-width: 860px) {
    .hp-career-hero__inner { padding-top: 130px; }
    .hp-career-hero__img { flex-basis: 170px; }
    .hp-career-hero__img img { max-width: 150px; }
    .hp-job-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 520px) {
    .hp-career-hero__img { display: none; }
    .hp-modal__dialog { padding: 30px 22px 24px; }
}

/* =========================================================================
   SPONSORSHIP PAGE
   ========================================================================= */
.hp-spon {
    position: relative; overflow: hidden; padding: 150px 0 110px;
    background: radial-gradient(720px 620px at 0% 20%, rgba(120, 20, 140, .72), transparent 58%), #000;
}
.hp-spon__inner { position: relative; z-index: 2; max-width: 1000px; }
.hp-spon__head { position: relative; text-align: center; margin-bottom: 28px; }
.hp-spon__title { text-transform: uppercase; font-size: clamp(30px, 5vw, 60px); margin: 0; color: #fff; }
.hp-spon__badge { position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: clamp(52px, 6vw, 84px); height: auto; }
.hp-spon__lead { color: #fff; text-align: center; max-width: 900px; margin: 0 auto 26px; font-size: clamp(15px, 1.5vw, 18px); }
.hp-spon__lead b { color: #e6b8ff; }
.hp-spon__subhead { font-family: var(--hp-display); color: #fff; font-size: clamp(18px, 2vw, 24px); margin: 0 0 10px; }
.hp-spon__tasks { list-style: disc; padding-left: 24px; margin: 0 0 34px; }
.hp-spon__tasks li { color: #fff; font-weight: 500; margin-bottom: 6px; font-size: clamp(15px, 1.4vw, 18px); }
.hp-spon__flash { background: rgba(34, 197, 94, .16); border: 1px solid rgba(34, 197, 94, .5); color: #d7ffe6; padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; }

.hp-spon-form { background: var(--hp-grad-card); border-radius: var(--hp-radius); padding: 46px clamp(24px, 4vw, 56px) 44px; box-shadow: 0 26px 60px rgba(30, 18, 90, .5); }
.hp-spon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
.hp-conditional { margin-top: 24px; }
.hp-conditional[hidden] { display: none; }
.hp-field { display: flex; flex-direction: column; }
.hp-field--full { grid-column: 1 / -1; }
.hp-field label { color: #fff; font-weight: 600; font-size: clamp(15px, 1.4vw, 18px); margin-bottom: 8px; }
.hp-field input, .hp-field select {
    width: 100%; box-sizing: border-box; padding: 12px 14px; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .35); background: rgba(222, 217, 240, .82);
    color: #201038; font-size: 15px; font-family: inherit; outline: none; transition: box-shadow .2s, background .2s;
}
.hp-field input::placeholder { color: #6b6486; }
.hp-field input:focus, .hp-field select:focus { background: #fff; box-shadow: 0 0 0 3px rgba(168, 106, 214, .45); }

.hp-radio-group { margin-top: 26px; }
.hp-radio-group__label { display: block; color: #fff; font-weight: 600; font-size: clamp(15px, 1.4vw, 18px); margin-bottom: 10px; }
.hp-radio-row { display: flex; gap: 30px; }
.hp-radio { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: clamp(15px, 1.4vw, 18px); cursor: pointer; }
.hp-radio input { width: 17px; height: 17px; accent-color: #a86ad6; cursor: pointer; }

.hp-spon-form__submit { display: flex; justify-content: center; margin-top: 38px; }

@media (max-width: 760px) {
    .hp-spon { padding-top: 130px; }
    .hp-spon__head { text-align: left; }
    .hp-spon__badge { display: none; }
    .hp-spon__lead, .hp-spon__title { text-align: left; }
    .hp-spon-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================================
   BUSINESS LEAD FORM (bform) — hero + form + stats
   ========================================================================= */
.hp-bform-hero {
    position: relative; overflow: hidden;
    background: radial-gradient(760px 640px at 3% 30%, rgba(150, 18, 150, .72), transparent 58%), #000;
}
.hp-bform-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 48px; padding: 150px 0 90px; }
.hp-bform-hero__content { flex: 1 1 56%; min-width: 0; }
.hp-bform-hero__content h1 { font-size: clamp(30px, 3.6vw, 52px); line-height: 1.1; margin: 0 0 20px; color: #fff; }
.hp-bform-hero__sub { color: #e6b8ff; font-weight: 600; font-size: clamp(17px, 1.8vw, 23px); margin: 0 0 16px; }
.hp-bform-hero__desc { color: #efe6f8; font-size: clamp(14px, 1.4vw, 17px); margin: 0 0 34px; max-width: 640px; }

.hp-bform-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 26px; max-width: 560px; }
.hp-bform-stat { background: linear-gradient(150deg, rgba(70, 90, 190, .34), rgba(150, 95, 205, .30)); border: 1px solid rgba(200, 170, 240, .24); border-radius: 16px; padding: 22px 26px; }
.hp-bform-stat__num { display: block; font-family: var(--hp-display); font-weight: 800; font-size: clamp(26px, 3vw, 40px); line-height: 1.1; background: var(--hp-grad-btn); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #a86ad6; }
.hp-bform-stat__label { display: block; color: #fff; font-weight: 500; font-size: clamp(14px, 1.4vw, 18px); margin-top: 4px; }

.hp-bform-form { flex: 0 0 40%; background: var(--hp-grad-card); border-radius: var(--hp-radius); padding: 38px clamp(24px, 2.6vw, 40px) 34px; box-shadow: 0 26px 60px rgba(30, 18, 90, .5); }
.hp-bform-form__title { color: #fff; font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 6px; }
.hp-bform-form__subtitle { color: #eadff7; font-size: 15px; margin: 0 0 22px; }
.hp-bform-form .hp-field { margin-bottom: 16px; }
.hp-bform-form__submit { display: flex; justify-content: center; margin-top: 24px; }

@media (max-width: 900px) {
    .hp-bform-hero__inner { flex-direction: column; align-items: stretch; padding-top: 130px; gap: 40px; }
    .hp-bform-hero__content, .hp-bform-form { flex: none; }
    .hp-bform-stats { max-width: none; }
}
@media (max-width: 480px) {
    .hp-bform-stats { gap: 16px; }
}
