:root {
    --network-ink: #151b28;
    --network-charcoal: #293140;
    --network-charcoal-deep: #1d2431;
    --network-pink: #e72c78;
    --network-pink-dark: #bd1d5c;
    --network-green: #17864a;
    --network-gold: #d99a18;
    --network-white: #ffffff;
    --network-soft: #f5f7fa;
    --network-line: #dce1e8;
    --network-muted: #687386;
    --network-shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.network-landing-page {
    margin: 0;
    background: var(--network-white);
    color: var(--network-ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}
body.network-landing-page a { color: inherit; text-decoration: none; }
body.network-landing-page img { display: block; max-width: 100%; }
body.network-landing-page button,
body.network-landing-page input,
body.network-landing-page select { font: inherit; letter-spacing: 0; }

.network-shell { width: min(calc(100% - 48px), var(--network-shell)); margin: 0 auto; }
.network-skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 16px;
    color: #fff;
    background: var(--network-ink);
}
.network-skip-link:focus { top: 12px; }

.network-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 76px;
    border-bottom: 1px solid rgba(21, 27, 40, .08);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}
.network-header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.network-brand { display: flex; align-items: center; gap: 15px; flex: 0 0 auto; }
.network-brand img { width: 144px; height: auto; }
.network-brand span {
    padding-left: 15px;
    border-left: 1px solid var(--network-line);
    color: var(--network-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.network-desktop-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.network-desktop-nav a,
.network-login-link { font-size: 14px; font-weight: 700; }
.network-desktop-nav a { position: relative; }
.network-desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--network-pink);
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .18s ease, transform .18s ease;
}
.network-desktop-nav a:hover::after,
.network-desktop-nav a:focus-visible::after { opacity: 1; transform: scaleX(1); }
.network-header-actions { display: flex; align-items: center; gap: 18px; }
.network-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.network-button:hover,
.network-button:focus-visible { transform: translateY(-2px); }
.network-button--primary { color: #fff !important; background: var(--network-pink); box-shadow: 0 10px 25px rgba(231, 44, 120, .18); }
.network-button--primary:hover { background: var(--network-pink-dark); box-shadow: 0 14px 32px rgba(231, 44, 120, .24); }
.network-button--light { color: var(--network-ink); background: #fff; border-color: #fff; }
.network-mobile-menu { display: none; margin-left: auto; position: relative; }
.network-mobile-menu summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; cursor: pointer; list-style: none; }
.network-mobile-menu summary::-webkit-details-marker { display: none; }
.network-mobile-menu summary span { width: 22px; height: 2px; display: block; background: var(--network-ink); }
.network-mobile-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 20px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--network-line);
    background: #fff;
    box-shadow: 0 20px 50px rgba(21, 27, 40, .16);
}
.network-mobile-menu nav > a:not(.network-button) { padding: 10px 4px; font-weight: 700; }

.network-hero {
    position: relative;
    min-height: calc(88svh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--network-charcoal-deep);
}
.network-hero-picture,
.network-hero-picture img,
.network-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-hero-picture img { object-fit: cover; object-position: center; }
.network-hero-shade { background: linear-gradient(90deg, rgba(17, 23, 35, .95) 0%, rgba(17, 23, 35, .86) 38%, rgba(17, 23, 35, .18) 72%, rgba(17, 23, 35, .08) 100%); }
.network-hero-content { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.network-hero-content > * { max-width: 690px; }
.network-eyebrow {
    margin: 0 0 18px;
    color: var(--network-pink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.network-hero h1,
.network-section-heading h2,
.network-final-cta h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: 0;
}
.network-hero h1 { max-width: 790px; font-size: 62px; animation: network-rise .65s ease both; }
.network-hero-content > p:not(.network-eyebrow) { margin: 25px 0 0; color: rgba(255,255,255,.84); font-size: 19px; line-height: 1.7; }
.network-hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; animation: network-rise .65s .12s ease both; }
.network-hero-note { margin-top: 17px; display: block; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 600; }
@keyframes network-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.network-proof { border-bottom: 1px solid var(--network-line); background: #fff; }
.network-proof-inner { min-height: 108px; display: grid; grid-template-columns: minmax(280px, 1.8fr) repeat(4, minmax(105px, .6fr)); align-items: center; }
.network-proof p { margin: 0; padding-right: 30px; font-family: "Fraunces", Georgia, serif; font-size: 22px; line-height: 1.25; }
.network-proof div:not(.network-proof-inner) { min-height: 54px; padding: 4px 20px; border-left: 1px solid var(--network-line); display: flex; flex-direction: column; justify-content: center; }
.network-proof strong { font-size: 22px; }
.network-proof span { color: var(--network-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }

.network-section { padding: 104px 0; }
.network-section-heading { max-width: 690px; }
.network-section-heading h2 { font-size: 46px; }
.network-section-heading > p:not(.network-eyebrow) { margin: 22px 0 0; color: var(--network-muted); font-size: 17px; }
.network-section-heading--light { color: #fff; }
.network-section-heading--light > p:not(.network-eyebrow) { color: rgba(255,255,255,.7); }
.network-section-heading--split { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.network-section-heading--split > p { margin-bottom: 4px !important; }

.network-purpose { background: var(--network-soft); }
.network-purpose-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; align-items: start; }
.network-purpose-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--network-line); }
.network-purpose-steps li { padding: 27px 0; display: grid; grid-template-columns: 56px 1fr; gap: 18px; border-bottom: 1px solid var(--network-line); }
.network-purpose-steps li > span { color: var(--network-pink); font-size: 13px; font-weight: 800; }
.network-purpose-steps h3 { margin: 0; font-size: 19px; }
.network-purpose-steps p { margin: 6px 0 0; color: var(--network-muted); }

.network-directory-top { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: end; }
.network-search-form { padding: 24px; border: 1px solid var(--network-line); background: var(--network-soft); }
.network-search-form label { display: block; margin-bottom: 9px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.network-search-form > div { display: grid; grid-template-columns: minmax(0, 1fr) 150px auto; gap: 8px; }
.network-search-form input,
.network-search-form select { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--network-line); border-radius: 4px; color: var(--network-ink); background: #fff; }
.network-search-form input:focus,
.network-search-form select:focus { outline: 2px solid rgba(231,44,120,.25); border-color: var(--network-pink); }
.network-results-heading { margin-top: 65px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.network-results-heading h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 32px; }
.network-results-heading span { color: var(--network-muted); font-size: 13px; }
.network-business-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--network-line); border-left: 1px solid var(--network-line); }
.network-business-card { min-width: 0; display: flex; flex-direction: column; border-right: 1px solid var(--network-line); border-bottom: 1px solid var(--network-line); background: #fff; transition: background .18s ease, transform .18s ease; }
.network-business-card:hover { position: relative; z-index: 2; background: #fbfcfd; transform: translateY(-3px); }
.network-business-main { min-height: 225px; padding: 26px; display: grid; grid-template-columns: 58px 1fr; gap: 17px; }
.network-company-mark { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--network-charcoal); font-weight: 800; }
.network-company-mark img { width: 100%; height: 100%; object-fit: cover; }
.network-business-copy { min-width: 0; }
.network-business-copy small { display: flex; flex-wrap: wrap; gap: 7px; color: var(--network-muted); font-size: 10px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.network-business-copy small em { color: var(--network-green); font-style: normal; }
.network-business-copy strong { margin: 9px 0 8px; display: block; font-size: 19px; line-height: 1.3; }
.network-business-copy > span { display: block; color: var(--network-muted); font-size: 14px; }
.network-business-meta { min-height: 55px; padding: 13px 20px; display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: center; border-top: 1px solid var(--network-line); color: var(--network-muted); font-size: 11px; }
.network-business-meta a { grid-column: 2; grid-row: 1 / 3; color: var(--network-pink); font-weight: 800; }
.network-rating { color: var(--network-gold); font-weight: 800; }
.network-rating small { color: var(--network-muted); font-weight: 500; }
.network-empty { margin-top: 25px; padding: 40px; border: 1px solid var(--network-line); text-align: center; }
.network-empty h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 28px; }
.network-empty p { margin: 8px 0 0; color: var(--network-muted); }
.network-pagination { margin-top: 30px; }
.network-pagination nav { display: flex; justify-content: center; }
.network-pagination svg { width: 18px; }

.network-opportunity-section { padding: 104px 0; color: #fff; background: var(--network-charcoal); }
.network-opportunity-list { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.17); }
.network-opportunity-list a { min-height: 82px; display: grid; grid-template-columns: 150px minmax(0, 1.4fr) minmax(140px, .65fr) auto 28px; gap: 22px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.17); transition: background .18s ease, padding .18s ease; }
.network-opportunity-list a:hover { padding: 0 14px; background: rgba(255,255,255,.04); }
.network-opportunity-list small { color: rgba(255,255,255,.57); font-size: 10px; text-transform: uppercase; }
.network-opportunity-list strong { font-size: 17px; }
.network-opportunity-list span { color: rgba(255,255,255,.7); font-size: 13px; }
.network-opportunity-list b { white-space: nowrap; color: #fff; font-size: 13px; }
.network-opportunity-list em { color: var(--network-pink); font-size: 22px; font-style: normal; }
.network-opportunity-empty { margin-top: 35px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.7); }
.network-section-action { margin-top: 28px; text-align: right; }
.network-text-link { color: var(--network-pink) !important; font-weight: 800; }
.network-text-link span { display: inline-block; margin-left: 8px; transition: transform .18s ease; }
.network-text-link:hover span { transform: translateX(5px); }

.network-service-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.network-service-card { min-width: 0; border: 1px solid var(--network-line); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.network-service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(21,27,40,.09); }
.network-service-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--network-soft); }
.network-service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.network-service-card:hover .network-service-image img { transform: scale(1.025); }
.network-service-card > div { padding: 20px; }
.network-service-card > div > span { color: var(--network-pink); font-size: 11px; font-weight: 800; }
.network-service-card h3 { min-height: 52px; margin: 8px 0; font-size: 18px; line-height: 1.4; }
.network-service-card p { min-height: 62px; margin: 0; color: var(--network-muted); font-size: 13px; }
.network-service-card footer { margin-top: 18px; padding-top: 15px; display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid var(--network-line); font-size: 12px; }
.network-service-card footer a { color: var(--network-pink); font-weight: 800; }

.network-trust-section { padding: 104px 0; color: #fff; background: var(--network-charcoal-deep); }
.network-trust-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; }
.network-trust-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.network-trust-points article { min-height: 275px; padding: 25px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.network-trust-points span { color: var(--network-pink); font-size: 12px; font-weight: 800; }
.network-trust-points h3 { margin: 65px 0 10px; font-size: 18px; }
.network-trust-points p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }

.network-membership { background: var(--network-soft); }
.network-membership-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; align-items: center; }
.network-price { padding: 38px; color: #fff; background: var(--network-charcoal); box-shadow: 20px 20px 0 #e7ebf0; }
.network-price > span { color: var(--network-pink); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.network-price > strong { margin: 12px 0 20px; display: block; font-family: "Fraunces", Georgia, serif; font-size: 54px; line-height: 1; }
.network-price > strong small { font-family: "Manrope", Arial, sans-serif; font-size: 14px; }
.network-price ul { margin: 0 0 28px; padding: 22px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.network-price li { padding: 7px 0 7px 20px; position: relative; color: rgba(255,255,255,.78); font-size: 13px; }
.network-price li::before { position: absolute; left: 0; color: var(--network-pink); content: "✓"; }

.network-faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.network-faq-list { border-top: 1px solid var(--network-line); }
.network-faq-list details { border-bottom: 1px solid var(--network-line); }
.network-faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 16px; font-weight: 800; }
.network-faq-list summary::-webkit-details-marker { display: none; }
.network-faq-list summary::after { color: var(--network-pink); font-size: 24px; content: "+"; }
.network-faq-list details[open] summary::after { content: "−"; }
.network-faq-list details p { margin: 0; padding: 0 45px 25px 0; color: var(--network-muted); }

.network-final-cta { padding: 100px 0; color: #fff; text-align: center; background: var(--network-charcoal); }
.network-final-cta .network-shell { max-width: 800px; }
.network-final-cta h2 { font-size: 54px; }
.network-final-cta p:not(.network-eyebrow) { margin: 22px auto 30px; max-width: 620px; color: rgba(255,255,255,.7); font-size: 17px; }

.network-footer { color: rgba(255,255,255,.74); background: #111722; }
.network-footer-main { padding: 64px 0; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 70px; }
.network-footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.network-footer-brand p { max-width: 310px; margin: 20px 0 0; font-size: 13px; }
.network-footer nav { display: grid; align-content: start; gap: 10px; }
.network-footer nav strong { margin-bottom: 7px; color: #fff; font-size: 12px; text-transform: uppercase; }
.network-footer nav a { font-size: 13px; }
.network-footer nav a:hover { color: var(--network-pink); }
.network-footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }

.network-reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.network-reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .network-desktop-nav { display: none; }
    .network-header-actions { margin-left: auto; }
    .network-hero h1 { font-size: 52px; }
    .network-proof-inner { grid-template-columns: 1.5fr repeat(2, 1fr); padding: 20px 0; row-gap: 14px; }
    .network-purpose-layout,
    .network-trust-layout { gap: 55px; }
    .network-business-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .network-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .network-opportunity-list a { grid-template-columns: 125px minmax(0, 1fr) 150px 24px; }
    .network-opportunity-list b { display: none; }
    .network-footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 780px) {
    .network-shell { width: min(calc(100% - 32px), var(--network-shell)); }
    .network-site-header { height: 70px; }
    .network-header-inner { gap: 15px; }
    .network-brand img { width: 128px; }
    .network-brand span,
    .network-header-actions { display: none; }
    .network-mobile-menu { display: block; }
    .network-hero { min-height: 670px; align-items: end; }
    .network-hero-picture img { object-position: 67% center; }
    .network-hero-shade { background: linear-gradient(0deg, rgba(17,23,35,.97) 0%, rgba(17,23,35,.88) 50%, rgba(17,23,35,.28) 100%); }
    .network-hero-content { padding-top: 110px; padding-bottom: 50px; }
    .network-hero h1 { font-size: 42px; }
    .network-hero-content > p:not(.network-eyebrow) { font-size: 16px; }
    .network-proof-inner { grid-template-columns: repeat(2, 1fr); }
    .network-proof p { grid-column: 1 / -1; padding: 0 0 14px; font-size: 20px; }
    .network-proof div:not(.network-proof-inner) { border-left: 0; border-top: 1px solid var(--network-line); padding-left: 0; }
    .network-section,
    .network-opportunity-section,
    .network-trust-section { padding: 76px 0; }
    .network-section-heading h2 { font-size: 38px; }
    .network-purpose-layout,
    .network-directory-top,
    .network-trust-layout,
    .network-membership-layout,
    .network-faq-layout { grid-template-columns: 1fr; gap: 48px; }
    .network-section-heading--split { grid-template-columns: 1fr; gap: 15px; align-items: start; }
    .network-search-form > div { grid-template-columns: 1fr; }
    .network-business-grid { grid-template-columns: 1fr; }
    .network-business-main { min-height: 0; }
    .network-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .network-opportunity-list a { padding: 20px 0; grid-template-columns: 1fr 24px; gap: 4px 15px; }
    .network-opportunity-list a:hover { padding: 20px 10px; }
    .network-opportunity-list small,
    .network-opportunity-list strong,
    .network-opportunity-list span { grid-column: 1; }
    .network-opportunity-list em { grid-column: 2; grid-row: 1 / 4; }
    .network-trust-points { grid-template-columns: 1fr; }
    .network-trust-points article { min-height: 190px; }
    .network-trust-points h3 { margin-top: 35px; }
    .network-price { box-shadow: 12px 12px 0 #e7ebf0; }
    .network-footer-main { grid-template-columns: repeat(2, 1fr); }
    .network-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .network-hero { min-height: calc(100svh - 70px); }
    .network-hero h1 { font-size: 38px; }
    .network-hero-actions { display: grid; }
    .network-button { width: 100%; }
    .network-hero-note { font-size: 11px; }
    .network-section-heading h2,
    .network-final-cta h2 { font-size: 34px; }
    .network-purpose-steps li { grid-template-columns: 42px 1fr; }
    .network-business-main { padding: 20px; grid-template-columns: 48px 1fr; }
    .network-company-mark { width: 48px; height: 48px; }
    .network-business-meta { grid-template-columns: 1fr; }
    .network-business-meta a { grid-column: 1; grid-row: auto; margin-top: 4px; }
    .network-service-grid { grid-template-columns: 1fr; }
    .network-service-card h3,
    .network-service-card p { min-height: 0; }
    .network-price { padding: 28px 22px; }
    .network-price > strong { font-size: 46px; }
    .network-footer-main { grid-template-columns: 1fr; gap: 34px; }
    .network-footer-brand { grid-column: auto; }
    .network-footer-bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .network-reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
